{% extends "helpdesk/inner.html" %} {% load i18n %} {% load url from future %} {% block helpdesk_title %}{% trans "Change Settings" %}{% endblock %} {% block helpdesk_widgets %} {% if show_password_change_link %} {% url 'auth_password_change' as password_change_url %}

Change Password

Change your password here.

{% endif %} {% blocktrans %}

Settings

Use the following options to change the way your helpdesk system works for you. These settings do not impact any other user.

{% endblocktrans %}
{% csrf_token %}
{% for field in form %}
{{ field }} {% if field.errors %}
{{ field.errors }}
{% endif %} {% if field.help_text %}
{{ field.help_text }}
{% endif %}
{% endfor %}
{% endblock %}