mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
33 lines
712 B
PHP
33 lines
712 B
PHP
@extends('layout.default')
|
|
|
|
@section('title', $__t('Tasks settings'))
|
|
|
|
@section('viewJsName', 'taskssettings')
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col">
|
|
<h2 class="title">@yield('title')</h2>
|
|
</div>
|
|
</div>
|
|
|
|
<hr class="my-2">
|
|
|
|
<div class="row">
|
|
<div class="col-lg-6 col-12">
|
|
|
|
@include('components.numberpicker', array(
|
|
'id' => 'tasks_due_soon_days',
|
|
'additionalAttributes' => 'data-setting-key="tasks_due_soon_days"',
|
|
'label' => 'Due soon days',
|
|
'min' => 0,
|
|
'additionalCssClasses' => 'user-setting-control',
|
|
'hint' => $__t('Set to 0 to hide due soon filters/highlighting')
|
|
))
|
|
|
|
<a href="{{ $U('/tasks') }}"
|
|
class="btn btn-success">{{ $__t('OK') }}</a>
|
|
</div>
|
|
</div>
|
|
@stop
|