- show "link has expired message" in password reset screen - added date objects as hydrator variables - for custom date formats in invoice templates - show meta-fields with null values (e.g. booleans with `false` where hidden) - fix permission check: allow to remove `view_own_timesheet` but still record times - prevent error 500 if customer country is empty - fix API 500 error if project does not exist when creating new timesheet - fix tags are not created in remote-search mode - do not check "export items" by default - fix daterange query, if user an request locale are different - added logging for invalid SAML responses (see various discussions)
25 lines
726 B
Twig
25 lines
726 B
Twig
{% extends 'user/form.html.twig' %}
|
|
|
|
{% block form_content %}
|
|
|
|
{% form_theme form 'form/horizontal.html.twig' %}
|
|
|
|
{{ form_row(form._token) }}
|
|
|
|
<fieldset class="form-fieldset form-fieldset-light">
|
|
<legend>{{ 'work_times_should'|trans }}</legend>
|
|
{{ form_row(form.workHoursMonday) }}
|
|
{{ form_row(form.workHoursTuesday) }}
|
|
{{ form_row(form.workHoursWednesday) }}
|
|
{{ form_row(form.workHoursThursday) }}
|
|
{{ form_row(form.workHoursFriday) }}
|
|
{{ form_row(form.workHoursSaturday) }}
|
|
{{ form_row(form.workHoursSunday) }}
|
|
</fieldset>
|
|
|
|
<fieldset class="form-fieldset form-fieldset-light">
|
|
{{- form_rest(form) -}}
|
|
</fieldset>
|
|
|
|
{% endblock %}
|