{% extends "helpdesk/public_base.html" %}{% load i18n %} {% block helpdesk_title %}{% trans "View a Ticket" %}{% endblock %} {% block helpdesk_head %} {% endblock %} {% block helpdesk_body %} {% if ticket.resolution %}{% endif %}
{{ ticket.id }}. {{ ticket.title }} [{{ ticket.get_status }}]
{% blocktrans %}Queue: {{ ticket.queue }}{% endblocktrans %}
{% trans "Submitted On" %} {{ ticket.created|date:"r" }} ({{ ticket.created|timesince }} ago)
{% trans "Submitter E-Mail" %} {{ ticket.submitter_email }}
{% trans "Priority" %} {{ ticket.get_priority_display }}
{% trans "Description" %}
{{ ticket.description }}
{% trans "Resolution" %}{% ifequal ticket.get_status_display "Resolved" %} {% trans "Accept" %}{% endifequal %}
{{ ticket.resolution }}
{% if ticket.followup_set.public_followups %}

{% trans "Follow-Ups" %}

{% load ticket_to_link %} {% for followup in ticket.followup_set.public_followups %}
{{ followup.title }}
{{ followup.comment|num_to_link }} {% if followup.ticketchange_set.all %}
{% endif %}
{% endfor %} {% endif %} {% endblock %}