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

{% trans "Edit a Ticket" %}

{% trans "Unless otherwise stated, all fields are required." %} {% trans "Please provide as descriptive a title and description as possible." %}

{% trans "Note" %}: {% blocktrans %}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 %}

{{ form|bootstrap }} {% comment %} {% 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 %} {% endcomment %}
{% csrf_token %}
{% endblock %}