{!! $tpl->displayNotification() !!}
@if (isset($allTicketGroups['all']))
@php $allTickets = $allTicketGroups['all']['items']; @endphp
@endif
@foreach ($allTicketGroups as $group)
@if ($group['label'] != 'all')
@dispatchEvent('filters.afterLefthandSectionOpen')
@include('tickets::submodules.ticketNewBtn')
@include('tickets::submodules.ticketFilter')
@dispatchEvent('filters.beforeLefthandSectionClose')
@dispatchEvent('filters.afterRighthandSectionOpen')
@dispatchEvent('filters.beforeRighthandSectionClose')
{{ $group['label'] }} ({{ count($group['items']) }})
@endif
@php $allTickets = $group['items']; @endphp
@dispatchEvent('allTicketsTable.before', ['tickets' => $allTickets])
@dispatchEvent('allTicketsTable.afterClose', ['tickets' => $allTickets])
@if ($group['label'] != 'all')
@endif
@endforeach
| {!! __('label.title') !!} | {!! __('label.todo_type') !!} | {!! __('label.progress') !!} | {!! __('label.dependent_on') !!} | {!! __('label.todo_status') !!} | {!! __('label.owner') !!} | {!! __('label.planned_start_date') !!} | {!! __('label.planned_end_date') !!} | {!! __('label.planned_hours') !!} | {!! __('label.estimated_hours_remaining') !!} | {!! __('label.booked_hours') !!} | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| @if ($row['type'] == 'milestone') {{ $row['headline'] }} @else {{ $row['headline'] }} @endif | {!! __('label.'.strtolower($row['type'])) !!} |
@if ($row['type'] == 'milestone')
{!! __('label.calculating_progress') !!}
|
@php
if ($row['milestoneid'] != '' && $row['milestoneid'] != 0) {
$milestoneHeadline = $tpl->escape($row['milestoneHeadline']);
} else {
$milestoneHeadline = __('label.no_milestone');
}
@endphp
@php if (isset($statusLabels[$row['status']])) { $class = $statusLabels[$row['status']]['class']; $name = $statusLabels[$row['status']]['name']; $sortKey = $statusLabels[$row['status']]['sortKey']; } else { $class = 'label-important'; $name = 'new'; $sortKey = 0; } @endphp | {!! __('label.due_icon') !!} | {!! __('label.due_icon') !!} | {{ $row['planHours'] }} | {{ $row['hourRemaining'] }} | {{ $row['bookedHours'] }} | @if ($login::userIsAtLeast($roles::$editor)) @endif | @dispatchEvent('allTicketsTable.beforeRowEnd', ['tickets' => $allTickets, 'rowNum' => $rowNum])