mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-30 11:54:18 +01:00
23 lines
822 B
HTML
23 lines
822 B
HTML
|
{% extends "helpdesk/base.html" %}{% load i18n %}
|
||
|
|
||
|
{% block helpdesk_title %}{% trans "Change User Settings" %}{% endblock %}
|
||
|
|
||
|
{% block helpdesk_body %}{% blocktrans %}
|
||
|
<h2>User Settings</h2>
|
||
|
|
||
|
<p>Use the following options to change the way your helpdesk system works for you. These settings do not impact any other user.</p>{% endblocktrans %}
|
||
|
|
||
|
<form method='post' action='./'>
|
||
|
<fieldset>
|
||
|
<dl>{% for field in form %}
|
||
|
<dt><label for='id_{{ field.name }}'>{{ field.label }}</label></dt>
|
||
|
<dd>{{ field }}</dd>
|
||
|
{% if field.errors %}<dd class='error'>{{ field.errors }}</dd>{% endif %}
|
||
|
{% if field.help_text %}<dd class='form_help_text'>{{ field.help_text }}</dd>{% endif %}
|
||
|
{% endfor %}</dl>
|
||
|
</fieldset>
|
||
|
<input type='submit' value='{% trans "Save Options" %}' />
|
||
|
</form>
|
||
|
|
||
|
{% endblock %}
|