mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
Improve journal pages loading time (new date range filter) Various small style adjustments (meal plan page and others) Pulled German translations from Transifex Show the shopping list total value (closes #1309) Make it possible to copy recipes (closes #714) Implemented optional "auto decimal separator for price inputs" (closes #1345) Removed table grouped column fixed order restriction (closes #1402) Don't filter out style, class, id attributes of html text (closes #1298) Added product picture as column on the stock overview page (closes #1283) Added grocycodes also for chores and batteries (+ camera barcode scanning for /choretracking and /batterytracking, this now closes #221)
79 lines
1.9 KiB
PHP
79 lines
1.9 KiB
PHP
@extends('layout.default')
|
|
|
|
@section('title', $__t('Chore tracking'))
|
|
@section('activeNav', 'choretracking')
|
|
@section('viewJsName', 'choretracking')
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-12 col-md-6 col-xl-4 pb-3">
|
|
<h2 class="title">@yield('title')</h2>
|
|
|
|
<hr class="my-2">
|
|
|
|
<form id="choretracking-form"
|
|
novalidate>
|
|
|
|
<div class="form-group">
|
|
<label class="w-100"
|
|
for="chore_id">
|
|
{{ $__t('Chore') }}
|
|
<i id="barcode-lookup-hint"
|
|
class="fas fa-barcode float-right mt-1"></i>
|
|
</label>
|
|
<select class="form-control combobox barcodescanner-input"
|
|
id="chore_id"
|
|
name="chore_id"
|
|
required
|
|
data-target="@chorepicker">
|
|
<option value=""></option>
|
|
@foreach($chores as $chore)
|
|
<option value="{{ $chore->id }}">{{ $chore->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
<div class="invalid-feedback">{{ $__t('You have to select a chore') }}</div>
|
|
</div>
|
|
|
|
@include('components.datetimepicker', array(
|
|
'id' => 'tracked_time',
|
|
'label' => 'Tracked time',
|
|
'format' => 'YYYY-MM-DD HH:mm:ss',
|
|
'initWithNow' => true,
|
|
'limitEndToNow' => true,
|
|
'limitStartToNow' => false,
|
|
'invalidFeedback' => $__t('This can only be before now')
|
|
))
|
|
|
|
@if(GROCY_FEATURE_FLAG_CHORES_ASSIGNMENTS)
|
|
@include('components.userpicker', array(
|
|
'label' => 'Done by',
|
|
'users' => $users,
|
|
'nextInputSelector' => '#user_id',
|
|
'prefillByUserId' => GROCY_USER_ID
|
|
))
|
|
@else
|
|
<input type="hidden"
|
|
id="user_id"
|
|
name="user_id"
|
|
value="{{ GROCY_USER_ID }}">
|
|
@endif
|
|
|
|
@include('components.userfieldsform', array(
|
|
'userfields' => $userfields,
|
|
'entity' => 'chores_log'
|
|
))
|
|
|
|
<button id="save-choretracking-button"
|
|
class="btn btn-success">{{ $__t('OK') }}</button>
|
|
|
|
</form>
|
|
</div>
|
|
|
|
<div class="col-12 col-md-6 col-xl-4">
|
|
@include('components.chorecard')
|
|
</div>
|
|
</div>
|
|
|
|
@include('components.barcodescanner')
|
|
@stop
|