{!! $tpl->displayNotification() !!}
@dispatchEvent('allTicketsTable.before', ['tickets' => $allTickets])
@dispatchEvent('allTicketsTable.afterClose', ['tickets' => $allTickets])
| {!! __('label.project_name') !!} | {!! __('label.title') !!} | {!! __('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') !!} | {!! __('label.progress') !!} | |
|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $row->projectName }} |
@dispatchEvent('allTicketsTable.afterRowStart', ['rowNum' => $rowNum, 'tickets' => $allTickets])
{{ $row->headline }} | @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']; } else { $class = 'label-important'; $name = 'new'; } @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])