forked from gergely/calendar-social
17 lines
389 B
HTML
17 lines
389 B
HTML
{% extends 'settings-base.html' %}
|
|
{% from '_macros.html' import field %}
|
|
|
|
{% block content %}
|
|
{{ super() }}
|
|
<h2>{% trans %}Edit profile{% endtrans %}</h2>
|
|
<form method="post">
|
|
{{ form.hidden_tag() }}
|
|
{{ form.errors }}
|
|
|
|
{{ field(form.display_name) }}
|
|
{{ field(form.locked) }}
|
|
|
|
<button type="submit">{% trans %}Save{% endtrans %}</button>
|
|
</form>
|
|
{% endblock content %}
|