{{ __("links.add_task") }}
{{ __("links.cancel") }}
@php $sumPlanHours = 0; $sumEstHours = 0; @endphp @foreach ($ticketSubtasks as $subticket) @php $sumPlanHours = $sumPlanHours + $subticket['planHours']; $sumEstHours = $sumEstHours + $subticket['hourRemaining']; if ($subticket['dateToFinish'] == "0000-00-00 00:00:00" || $subticket['dateToFinish'] == "1969-12-31 00:00:00") { $date = $tpl->__("text.anytime"); } else { $date = format($subticket['dateToFinish'])->date(); } @endphp
@if($login::userIsAtLeast($roles::$editor))
id }}" hx-target="#ticketSubtasks" class="delete">
{{ __("links.delete_todo") }}
@endif
{{ $subticket['headline'] }}
{{ __("label.due") }}
{{ __("label.planned_hours") }}
{{ __("label.estimated_hours_remaining") }}
@if ($subticket['storypoints'] != '' && $subticket['storypoints'] > 0 && isset($efforts[$subticket['storypoints']])) {{ $efforts[$subticket['storypoints']] }} @else {{ __("label.story_points_unkown") }} @endif
{{ __("dropdown.how_big_todo") }}
@foreach($efforts as $effortKey => $effortValue)
{{ $effortValue }}
@endforeach
@php if (isset($statusLabels[$subticket['status']])) { $class = $statusLabels[$subticket['status']]["class"]; $name = $statusLabels[$subticket['status']]["name"]; } else { $class = 'label-important'; $name = 'new'; } @endphp
{{$name }}
{{ __('dropdown.choose_status') }}
@foreach ($statusLabels as $key => $label) {
{{ $label["name"] }}
@endforeach
@endforeach