{% extends "helpdesk/base.html" %} {% block helpdesk_title %}Helpdesk{% endblock %} {% block helpdesk_head %}{% load markup %} {% endblock %} {% block helpdesk_body %} {% if ticket.resolution %}{% endif %}
{{ ticket.id }}. {{ ticket.title }} [{{ ticket.get_status_display }}]EditDelete
Queue: {{ ticket.queue }}
Submitted On {{ ticket.created|date:"r" }} ({{ ticket.created|timesince }} ago)
Assigned To {{ ticket.get_assigned_to }}{% ifequal ticket.get_assigned_to 'Unassigned' %} Take{% endifequal %}
Submitter E-Mail {{ ticket.submitter_email }}
Priority {{ ticket.get_priority_display }}
Description
{{ ticket.description }}
Resolution{% ifequal ticket.get_status_display "Resolved" %} Accept{% endifequal %}
{{ ticket.resolution }}
{% 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 %}

Respond to this ticket

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 %}