{% extends "helpdesk/base.html" %} {% block helpdesk_title %}Helpdesk{% endblock %} {% block helpdesk_head %}{% load markup %} {% endblock %} {% block helpdesk_body %} {% if ticket.submitter_email %}{% endif %}
{{ ticket.id }}. {{ ticket.title }} [{{ ticket.get_status_display }}]
Queue: {{ ticket.queue }}
Submitted On {{ ticket.created }} ({{ ticket.created|timesince }} ago)
Assigned To {{ ticket.get_assigned_to }}
Submitter E-Mail {{ ticket.submitter_email }}
{% if ticket.followup_set.all %}

Follow-Ups

{% load ticket_to_link %} {% for followup in ticket.followup_set.all %}
{{ followup.title }}
{{ followup.comment|markdown|num_to_link }} {% if followup.ticketchange_set.all %}
{% for change in followup.ticketchange_set.all %} Changed {{ change.field }} from {{ change.old_value }} to {{ change.new_value }}.
{% endfor %}
{% endif %}
{% endfor %} {% endif %}

Add a comment

New Status {% ifequal ticket.status 1 %} » » {% endifequal %} {% ifequal ticket.status 2 %} {% endifequal %} {% ifequal ticket.status 3 %} {% endifequal %} {% ifequal ticket.status 4 %} {% endifequal %}

Change Other Details

{% endblock %}