{% extends "helpdesk/base.html" %}{% load i18n %} {% block helpdesk_title %}{% trans "Change User Settings" %}{% endblock %} {% block helpdesk_body %}{% blocktrans %}

User Settings

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

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