@extends('layouts.app')
@section('title', trans('settings.task_and_checklist_title'))
@section('plugin-styles')
@stop
@section('page-styles')
@stop
@section('content')
@include('layouts.partials.single-page-header', [
'hide_content_header' => true,
])
@include('checklist::checklist.dashboard.progress')
@include('checklist::checklist.dashboard.filter')
|
{{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')
@if(auth()->user()->can('create', Modules\Checklist\Entities\Checklist::class))
@include('checklist::checklists.form-collaborator')
@endif
@stop
@section('footer-script')
@php $route_prefix = 'checklists'; @endphp
@include('checklist::scripts.frontend')
@include('checklist::scripts.comment')
@stop