Files
grocy/views/choressettings.blade.php

34 lines
779 B
PHP
Raw Normal View History

@extends('layout.default')
@section('title', $__t('Chores settings'))
@section('viewJsName', 'choressettings')
@section('content')
<div class="row">
<div class="col">
<h2 class="title">@yield('title')</h2>
</div>
</div>
2020-11-08 15:09:10 +01:00
<hr class="my-2">
<div class="row">
<div class="col-lg-6 col-12">
<h4 class="mt-2">{{ $__t('Chores overview') }}</h4>
@include('components.numberpicker', array(
2020-08-31 20:32:50 +02:00
'id' => 'chores_due_soon_days',
'additionalAttributes' => 'data-setting-key="chores_due_soon_days"',
'label' => 'Due soon days',
'min' => 0,
'additionalCssClasses' => 'user-setting-control',
'hint' => $__t('Set to 0 to hide due soon filters/highlighting')
))
2020-08-31 20:32:50 +02:00
<a href="{{ $U('/choresoverview') }}"
class="btn btn-success">{{ $__t('OK') }}</a>
</div>
</div>
@stop