@extends('layouts.app') @section('form-title') {{ __('Tasks - all tasks') }} @endsection @section('form-sub-title') {{ __('Click a task for more information') }} @endsection @section('breadcrumb') @endsection @section('content')
{{ __('Tasks') }}
@if(getAuthUser()->can('view tasks of other organizations'))
{!! organisations( 'filter_organisation', getAuthUser()->organisation ? getAuthUser()->organisation->id : null, 'single' ) !!}
@else @endif
@if(canViewUpdate('add tasks of own organization') || canViewUpdate('add tasks of other organizations')) {{ __('New task') }} @endif {{ __('To do list') }}
{{-- status filters --}}
{{ __('Status') }}:
{{ __('Task') }} {{ __('Executor / Receiver') }} {{ __('Sent by') }} {{ __('Status') }}
{{ __('With selected') }}:
{!! taskStatus('task_status') !!}
{{ __('Show') }}: 10 20 40 80
@endsection @push('child-scripts') @endpush