@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']) }})
{{ $group['more-info'] }}
@endif
@php $allTickets = $group['items']; @endphp
@dispatchEvent('allTicketsTable.before', ['tickets' => $allTicketGroups])
@dispatchEvent('allTicketsTable.afterClose', ['tickets' => $allTickets])
@if ($group['label'] != 'all')
@endif
@endforeach
| {!! __('label.id') !!} | {!! __('label.title') !!} | {!! __('label.todo_status') !!} | {!! __('label.milestone') !!} | {!! __('label.effort') !!} | {!! __('label.priority') !!} | {!! __('label.editor') !!}. | {!! __('label.sprint') !!} | {!! __('label.tags') !!} | {!! __('label.due_date') !!} | {!! __('label.planned_hours') !!} | {!! __('label.estimated_hours_remaining') !!} | {!! __('label.booked_hours') !!} | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| #{{ $row['id'] }} |
@if ($row['dependingTicketId'] > 0)
{{ $row['parentHeadline'] }} // @endif {{ $row['headline'] }} |
@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
@php if ($row['milestoneid'] != '' && $row['milestoneid'] != 0) { $milestoneHeadline = $tpl->escape($row['milestoneHeadline']); } else { $milestoneHeadline = __('label.no_milestone'); } @endphp | @php if ($row['sprint'] != '' && $row['sprint'] != 0 && $row['sprint'] != -1) { $sprintHeadline = $tpl->escape($row['sprintName']); } else { $sprintHeadline = __('label.not_assigned_to_sprint'); } @endphp | @if ($row['tags'] != '') @php $tagsArray = explode(',', $row['tags']); @endphp @endif | @php if ($row['dateToFinish'] == '0000-00-00 00:00:00' || $row['dateToFinish'] == '1969-12-31 00:00:00') { $date = __('text.anytime'); } else { $date = new DateTime($row['dateToFinish']); $date = $date->format(__('language.dateformat')); } @endphp{{ ($row['bookedHours'] === null || $row['bookedHours'] == '') ? '0' : $row['bookedHours'] }} | @include('tickets::partials.ticketsubmenu', ['ticket' => $row, 'onTheClock' => $onTheClock]) | @dispatchEvent('allTicketsTable.beforeRowEnd', ['tickets' => $allTickets, 'rowNum' => $rowNum])|||||||