Todo list
({{ $pipeline->taskCheckItems->whereNotNull('completed_at')->count() }} / {{$pipeline->taskCheckItems->count()}})
{{-- @if(!$readOnly && iCan('create scrumboard task checkitem'))
Add new task
@endif --}}
@if(!$readOnly && $pipeline->id == $task->pipeline_id)
@if(!$readOnly && iCan('create scrumboard task checkitem'))
{{-- add new task --}}
@endif
@if($pipeline->taskCheckItems->count() > 0 && iCan('complete', [$pipeline->taskCheckItems[0]]))
{{-- check all --}}
{{-- uncheck all --}}
{{-- hide completed --}}
@endif
{{-- move task to next pipeline --}}
@if($nextBoardPipelineId && $pipeline->taskCheckItems->whereNull('completed_at')->count() == 0 && iCan('move', $task))
@elseif($pipeline->taskCheckItems->whereNull('completed_at')->count() == 0 && $pipeline->order == $pipeline->scrumBoard->pipelines->max('order'))
@endif
@endif
@if($isCheckItemFormVisible && $editingCheckItem == null)