{% extends "helpdesk/base.html" %}{% load i18n %} {% block helpdesk_title %}{% trans "Edit Ticket" %}{% endblock %} {% block helpdesk_body %} {% blocktrans %}

Edit a Ticket

Unless otherwise stated, all fields are required. Please provide as descriptive a title and description as possible.

Note: Editing a ticket does not send an e-mail to the ticket owner or submitter. No new details should be entered, this form should only be used to fix incorrect details or clean up the submission.

{% endblocktrans %}
{% for field in form %} {% if field.is_hidden %} {{ field }} {% else %}
{% if not field.field.required %} {% trans "(Optional)" %}{% endif %}
{{ field }}
{% if field.errors %}
{{ field.errors }}
{% endif %} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% endif %} {% endfor %}
{% endblock %}