@extends('layouts.app') @section('form-title') {{ __('Tasks - To do list') }} @endsection @section('form-sub-title') {{ __('Click a task for more information') }} @endsection @section('breadcrumb') @endsection @section('content')
{{ __('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 --}}
{{ __('Status:') }}
{{-- Action filters --}}
{{ __('Action') }}:
{{ __('Task') }} {{ __('Executor / Receiver') }} {{ __('Sent by') }} {{ __('Status') }} {{ __('Action') }}
{{ __('With selected') }}:
{!! taskStatus('task_status') !!}
{{ __('Show') }}: 10 20 40 80
@endsection @push('child-scripts') @endpush