{% extends "helpdesk/base.html" %} {% block helpdesk_title %}Helpdesk{% endblock %} {% block helpdesk_head %} {% endblock %} {% block helpdesk_body %} {% if ticket.resolution %}{% endif %}
{{ ticket.id }}. {{ ticket.title }} [{{ ticket.get_status }}]EditDelete{% if ticket.on_hold %}Unhold{% else %}Hold{% endif %}
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|safe }}
Resolution{% ifequal ticket.get_status_display "Resolved" %} Accept{% endifequal %}
{{ ticket.resolution|safe }}
{% if ticket.followup_set.all %}

Follow-Ups

{% load ticket_to_link %} {% for followup in ticket.followup_set.all %}
{{ followup.title }}
{% if followup.comment %}{{ followup.comment|num_to_link|safe }}{% endif %} {% for change in followup.ticketchange_set.all %} {% if forloop.first %}
{% endif %} {% endfor %} {% for attachment in followup.attachment_set.all %}{% if forloop.first %}
{% endif %} {% endfor %}
{% endfor %} {% endif %}

Respond to this ticket

(Optional)
Selecting a pre-set reply will over-write your comment below. You can then modify the pre-set reply to your liking before saving this update.
You can use the ticket and queue template variables in your message.
{% ifequal ticket.status 1 %}
» »
{% endifequal %} {% ifequal ticket.status 2 %}
» »
{% endifequal %} {% ifequal ticket.status 3 %}
« »
{% endifequal %} {% ifequal ticket.status 4 %}
«
{% endifequal %}
(Optional)
If this is public, the submitter will be e-mailed your comment or resolution.

Change Further Details »

Attach File(s) »

{% endblock %}