Update translations strings, add setting datetime and improve DC login flow

This commit is contained in:
Ana Custura 2026-04-07 20:14:57 +01:00
parent ed8723ee6b
commit 410f1b7913
11 changed files with 151 additions and 702 deletions

View file

@ -19,6 +19,15 @@
</div>
{% endmacro %}
{% macro form_datetime_field(field, errors=[]) %}
<div class="control block">
{{ field.label(class='label')}}
{{ field(id='butterbox_date', class='input', type="text") }}
{% for error in errors %}
<p class="help is-danger">{{ error }}</p>
{% endfor %}
</div>
{% endmacro %}
{% macro form_password_field(field, errors=[]) %}
<div class="control block">