forked from gergely/calendar-social
19 lines
410 B
HTML
19 lines
410 B
HTML
{% extends 'settings-base.html' %}
|
|
{% from '_macros.html' import field %}
|
|
|
|
{% block content %}
|
|
{{ super() }}
|
|
<h2>{% trans %}Settings{% endtrans %}</h2>
|
|
<form method="post">
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ form.errors }}
|
|
<br>
|
|
|
|
{{ field(form.timezone) }}
|
|
|
|
<button type="submit">{% trans %}Save{% endtrans %}</button>
|
|
<a href="{{ url_for('hello') }}">Cancel</a>
|
|
</form>
|
|
{% endblock content %}
|