{{ __('To do list') }}
@if(getAuthUser()->can('view tasks of other organizations'))
{!! organisations(
'filter_organisation',
null,
'single',
'All organisations'
) !!}
{!! authUserPullDown(
'filter_user',
null,
getAuthUser()->id,
'single',
'Select user'
); !!}
@else
{!! authUserPullDown(
'filter_user',
getAuthUser()->organisation ? getAuthUser()->organisation->id : null,
getAuthUser()->id,
'single',
'Select user'
); !!}
@endif
@if(canViewUpdate('add tasks of own organization') || canViewUpdate('add tasks of other organizations'))
{{ __('New task') }}
@endif
{{ __('All tasks') }}
{{-- status filters --}}
{{-- Action filters --}}
{{ __('Status:') }}
{{ __('Action') }}:
|
|
{{ __('Task') }} | {{ __('Executor / Receiver') }} | {{ __('Sent by') }} | {{ __('Status') }} | {{ __('Action') }} |
|---|
{{ __('With selected') }}:
{!! taskStatus('task_status') !!}