@extends('layout.default') @section('title', $__t('Chore tracking')) @section('activeNav', 'choretracking') @section('viewJsName', 'choretracking') @section('content')

@yield('title')


{{ $__t('You have to select a chore') }}
@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 @endif @include('components.userfieldsform', array( 'userfields' => $userfields, 'entity' => 'chores_log' ))
@include('components.chorecard')
@include('components.barcodescanner') @stop