@extends('layouts.app')
@section('title', trans('settings.task_and_checklist_title'))
@section('plugin-styles')
@stop
@section('page-styles')
@stop
@section('content')
@section('content-header-right')
@if (!(request()->has('archived') && request()->get('archived') == 1))
@can('create task-checklists')
{{trans('forms.lbl_add_new')}}
@endcan
@endif
@if(request()->user()->hasAnyPermission(['edit task-checklists']))
@if (request()->has('archived') && request()->get('archived') == 1)
{{trans('forms.lbl_back')}}
@else
{{trans('forms.lbl_see_archive')}}
@endif
@endif
@endsection
@include('layouts.partials.single-page-header', [
'pageTitle' => __('settings.task_and_checklist_title'),
'pageSubTitle' => __('forms.checklist_all_title'),
])
@include('checklist::checklists.filter', ['status_filter' => 1])
|
{{trans("tables.task_title")}} |
{{trans("tables.status_title")}} |
{{trans("tables.start_date")}} |
{{-- {{trans("tables.due_date_title")}} | --}}
{{-- {{trans("tables.assign_to_title")}} | --}}
|
{{trans("tables.action_title")}} |
@include('checklist::checklist.lists')
@stop
@section('panel-content')
@include('checklist::checklists.form-item')
@if(auth()->user()->can('create', Modules\Checklist\Entities\Checklist::class))
@include('checklist::checklists.form-collaborator')
@endif
@stop
@section('footer-script')
@php
$route_prefix = 'checklists.all';
$task_url = url('checklists/all');
@endphp
@include('checklist::scripts.dashboard')
@include('checklist::scripts.comment')
@stop