1234567891011121314151617181920212223 |
- {% extends "themes/"|add:settings.page_theme|add:"/base.html" %}
- {% load i18n %}
-
- {% block content %}
- <form action="" method="post">
- {% csrf_token %}
-
- {% get_current_language as LANGUAGE_CODE %}
- <h1>{% trans "Language and Timezone" %}</h1>
- {{ form_userprofile.as_p }}
-
- {% for head, form in ext_profiles.items %}
- <h1>{{ head }}</h1>
- {{ form.as_p }}
- {% endfor %}
-
- <h1>{% trans "Userdata and Password" %}</h1>
- {{ form_userchange.as_p }}
-
- <input type="submit" value="{% trans "Save" %}" class="button" />
- </form>
-
- {% endblock content %}
|