{% extends 'base.html' %} {% block title %}Edit Ticket {{ ticket.ticket_number }} - Optinet Global Links{% endblock %} {% block content %}

Edit Ticket {{ ticket.ticket_number }}

Update ticket information and status

Back to Ticket
Ticket Information
{% csrf_token %}
{{ form.category }} {% if form.category.errors %}
{{ form.category.errors.0 }}
{% endif %}
{{ form.assigned_employee }} {% if form.assigned_employee.errors %}
{{ form.assigned_employee.errors.0 }}
{% endif %} Recommended: Use employee assignment
{{ form.assigned_to }} {% if form.assigned_to.errors %}
{{ form.assigned_to.errors.0 }}
{% endif %} Alternative to employee assignment
{{ form.is_scheduled }}
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors.0 }}
{% endif %}
{{ form.priority }} {% if form.priority.errors %}
{{ form.priority.errors.0 }}
{% endif %}
{{ form.status }} {% if form.status.errors %}
{{ form.status.errors.0 }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %}
Cancel
{% endblock %}