{% extends "helpdesk/base.html" %} {% load i18n bootstrap4form %} {% block helpdesk_title %}{% trans "Edit Ticket" %}{% endblock %} {% block helpdesk_breadcrumb %} {% 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 %}

{% if errors %}

{% for error in errors %}{% trans "Error: " %}{{ error }}
{% endfor %}

{% endif %}
{% csrf_token %}
{{ form|bootstrap4form }}
{% endblock %} {% block helpdesk_js %} {{ form.media.js }} {% endblock %}