mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 01:32:38 +00:00
* UI changes * New (header) style was missing on some pages * Added/changed new localization strings * Unify page titles / apply .title class everywhere * Reduce spacing below page title Co-authored-by: Bernd Bestel <bernd@berrnd.de>
138 lines
5.4 KiB
PHP
138 lines
5.4 KiB
PHP
@extends('layout.default')
|
|
|
|
@section('title', $__t('Tasks'))
|
|
@section('activeNav', 'tasks')
|
|
@section('viewJsName', 'tasks')
|
|
|
|
@push('pageScripts')
|
|
<script src="{{ $U('/node_modules/datatables.net-rowgroup/js/dataTables.rowGroup.min.js?v=', true) }}{{ $version }}"></script>
|
|
<script src="{{ $U('/node_modules/datatables.net-rowgroup-bs4/js/rowGroup.bootstrap4.min.js?v=', true) }}{{ $version }}"></script>
|
|
@endpush
|
|
|
|
@push('pageStyles')
|
|
<link href="{{ $U('/node_modules/animate.css/animate.min.css?v=', true) }}{{ $version }}" rel="stylesheet">
|
|
<link href="{{ $U('/node_modules/datatables.net-rowgroup-bs4/css/rowGroup.bootstrap4.min.css?v=', true) }}{{ $version }}" rel="stylesheet">
|
|
@endpush
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col">
|
|
<h2 class="title">@yield('title')</h2>
|
|
<hr>
|
|
<p id="info-due-tasks" data-status-filter="duesoon" data-next-x-days="{{ $nextXDays }}" class="warning-message status-filter-message responsive-button mr-2"></p>
|
|
<p id="info-overdue-tasks" data-status-filter="overdue" class="error-message status-filter-message responsive-button"></p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row mt-3">
|
|
<div class="col-xs-12 col-md-2 col-xl-1">
|
|
<a class="btn btn-primary btn-sm responsive-button w-100 mb-3" href="{{ $U('/task/new') }}">
|
|
{{ $__t('Add') }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-6 col-xl-3">
|
|
<div class="input-group mb-3">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fas fa-search"></i></span>
|
|
</div>
|
|
<input type="text" id="search" class="form-control" placeholder="{{ $__t('Search') }}">
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-12 col-md-6 col-xl-3">
|
|
<div class="input-group mb-3">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fas fa-filter"></i></span>
|
|
</div>
|
|
<select class="form-control" id="status-filter">
|
|
<option value="all">{{ $__t('All') }}</option>
|
|
<option value="duesoon">{{ $__t('Due soon') }}</option>
|
|
<option value="overdue">{{ $__t('Overdue') }}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-12 col-md-6 col-xl-3">
|
|
<div class="form-check custom-control form-control-lg custom-checkbox pt-0">
|
|
<input class="form-check-input custom-control-input" type="checkbox" id="show-done-tasks">
|
|
<label class="form-check-label custom-control-label" for="show-done-tasks">
|
|
{{ $__t('Show done tasks') }}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col">
|
|
<table id="tasks-table" class="table table-sm table-striped dt-responsive">
|
|
<thead>
|
|
<tr>
|
|
<th class="border-right"></th>
|
|
<th>{{ $__t('Task') }}</th>
|
|
<th>{{ $__t('Due') }}</th>
|
|
<th class="d-none">Hidden category</th>
|
|
<th>{{ $__t('Assigned to') }}</th>
|
|
<th class="d-none">Hidden status</th>
|
|
|
|
@include('components.userfields_thead', array(
|
|
'userfields' => $userfields
|
|
))
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody class="d-none">
|
|
@foreach($tasks as $task)
|
|
<tr id="task-{{ $task->id }}-row" class="@if($task->done == 1) text-muted @endif @if(!empty($task->due_date) && $task->due_date < date('Y-m-d')) table-danger @elseif(!empty($task->due_date) && $task->due_date < date('Y-m-d', strtotime("+$nextXDays days"))) table-warning @endif">
|
|
<td class="fit-content border-right">
|
|
@if($task->done == 0)
|
|
<a class="btn btn-success btn-sm do-task-button" href="#" data-toggle="tooltip" data-placement="left" title="{{ $__t('Mark task "%s" as completed', $task->name) }}"
|
|
data-task-id="{{ $task->id }}"
|
|
data-task-name="{{ $task->name }}">
|
|
<i class="fas fa-check"></i>
|
|
</a>
|
|
@else
|
|
<a class="btn btn-secondary btn-sm undo-task-button" href="#" data-toggle="tooltip" data-placement="left" title="{{ $__t('Undo task "%s"', $task->name) }}"
|
|
data-task-id="{{ $task->id }}"
|
|
data-task-name="{{ $task->name }}">
|
|
<i class="fas fa-undo"></i>
|
|
</a>
|
|
@endif
|
|
<a class="btn btn-sm btn-danger delete-task-button" href="#"
|
|
data-task-id="{{ $task->id }}"
|
|
data-task-name="{{ $task->name }}">
|
|
<i class="fas fa-trash"></i>
|
|
</a>
|
|
<a class="btn btn-info btn-sm" href="{{ $U('/task/') }}{{ $task->id }}">
|
|
<i class="fas fa-edit"></i>
|
|
</a>
|
|
</td>
|
|
<td id="task-{{ $task->id }}-name" class="@if($task->done == 1) text-strike-through @endif">
|
|
{{ $task->name }}
|
|
</td>
|
|
<td>
|
|
<span>{{ $task->due_date }}</span>
|
|
<time class="timeago timeago-contextual" datetime="{{ $task->due_date }}"></time>
|
|
</td>
|
|
<td class="d-none">
|
|
@if($task->category_id != null) <span>{{ FindObjectInArrayByPropertyValue($taskCategories, 'id', $task->category_id)->name }}</span> @else <span class="font-italic font-weight-light">{{ $__t('Uncategorized') }}</span>@endif
|
|
</td>
|
|
<td>
|
|
@if($task->assigned_to_user_id != null) <span>{{ GetUserDisplayName(FindObjectInArrayByPropertyValue($users, 'id', $task->assigned_to_user_id)) }}</span> @endif
|
|
</td>
|
|
<td class="d-none">
|
|
@if($task->done == 1) text-muted @endif @if(!empty($task->due_date) && $task->due_date < date('Y-m-d')) overdue @elseif(!empty($task->due_date) && $task->due_date < date('Y-m-d', strtotime("+$nextXDays days"))) duesoon @endif
|
|
</td>
|
|
|
|
@include('components.userfields_tbody', array(
|
|
'userfields' => $userfields,
|
|
'userfieldValues' => FindAllObjectsInArrayByPropertyValue($userfieldValues, 'object_id', $task->id)
|
|
))
|
|
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
@stop
|