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