calendar-social/calsocial/templates/account/user-settings.html

21 lines
503 B
HTML
Raw Normal View History

{% extends 'account/settings-base.html' %}
{% from '_macros.html' import field %}
2018-07-03 11:15:17 +00:00
2018-07-13 08:19:37 +00:00
{% block settings_content %}
<h2>{% trans %}Settings{% endtrans %}</h2>
2018-07-13 08:19:37 +00:00
<form method="post" class="ui form">
2018-07-03 11:15:17 +00:00
{{ form.hidden_tag() }}
2018-07-13 08:19:37 +00:00
{% if form.errors %}
{% for error in form.errors %}
{{ error }}
{% endfor %}
2018-07-03 11:15:17 +00:00
<br>
2018-07-13 08:19:37 +00:00
{% endif %}
2018-07-03 11:15:17 +00:00
{{ field(form.timezone) }}
2018-07-03 11:15:17 +00:00
2018-07-13 08:19:37 +00:00
<button type="submit" class="ui primary button">{% trans %}Save{% endtrans %}</button>
2018-07-03 11:15:17 +00:00
</form>
2018-07-13 08:19:37 +00:00
{% endblock settings_content %}