2022-12-08 17:40:24 +01:00
|
|
|
{% extends "layouts/app.twig" %}
|
|
|
|
{% import 'macros/base.twig' as m %}
|
|
|
|
{% import 'macros/form.twig' as f %}
|
|
|
|
|
|
|
|
{% block title %}{{ __(is_edit ? 'worklog.edit' : 'worklog.add') }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
|
|
<h1>{{ block('title') }}</h1>
|
|
|
|
|
|
|
|
{% include 'layouts/parts/messages.twig' %}
|
|
|
|
|
|
|
|
<form method="post">
|
|
|
|
{{ csrf() }}
|
|
|
|
<div class="row g-2">
|
|
|
|
<div class="col-12">
|
2023-08-14 16:48:20 +02:00
|
|
|
{{ m.button(__('back'), url('/users', {action: 'view', user_id: user.id})) }}
|
2022-12-08 17:40:24 +01:00
|
|
|
</div>
|
|
|
|
<div class="col-12">
|
|
|
|
<div>
|
|
|
|
<label class="form-label">{{ __('User') }}</label>
|
|
|
|
</div>
|
|
|
|
{{ m.user(user, {'pronoun': true}) }}
|
|
|
|
</div>
|
|
|
|
<div class="col-12">
|
2023-04-19 22:34:08 +02:00
|
|
|
{{ f.input('work_date', __('worklog.date'), {
|
|
|
|
'type': 'date',
|
|
|
|
'value': work_date.format('Y-m-d'),
|
|
|
|
'required': true,
|
|
|
|
}) }}
|
|
|
|
{{ f.input('work_hours', __('worklog.hours'), {
|
|
|
|
'type': 'number',
|
|
|
|
'value': work_hours,
|
|
|
|
'required': true,
|
|
|
|
'step': '0.01',
|
|
|
|
'min': 0,
|
|
|
|
}) }}
|
|
|
|
{{ f.input('comment', __('worklog.comment'), {
|
|
|
|
'value': comment,
|
|
|
|
'required': true,
|
|
|
|
'max_length': 200,
|
|
|
|
}) }}
|
2022-12-08 17:40:24 +01:00
|
|
|
{{ f.submit(__('form.save')) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|