@extends('layouts.app') @section('title', trans('settings.task_and_checklist_title')) @section('plugin-styles') @stop @section('content')
@section('content-header-right') @can('create task-checklists') @endcan
{{__('title.topics')}} @if(request()->user()->hasAnyPermission(['edit task-checklists'])) @endif
@endsection @include('layouts.partials.single-page-header', [ 'pageTitle' => __('title.settings'), 'pageSubTitle' => __('menu.task_and_checklist_title'), ]) @include('checklist::checklists.filter', ['original_filter' => 0, 'status_filter' => 0])
{{-- --}} {{-- --}}
{{trans("tables.task_title")}}{{trans("tables.status_title")}}{{trans("tables.start_date")}}{{trans("tables.due_date_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 = 'settings.checklists.index'; $task_url = url('settings/checklists'); @endphp @include('checklist::scripts.admin') @include('checklist::scripts.comment') @stop