{% extends "helpdesk/public_base.html" %}{% load i18n %} {% block helpdesk_title %}{% trans "View a Ticket" %}{% endblock %} {% block helpdesk_body %} {% if ticket.resolution %}{% endif %}
{{ ticket.id }}. {{ ticket.title }} [{{ ticket.get_status }}]
{% blocktrans with ticket.queue as queue_name %}Queue: {{ queue_name }}{% 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|linebreaksbr }}
{% 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|force_escape|num_to_link|linebreaksbr }} {% if followup.ticketchange_set.all %}
{% endif %}
{% endfor %} {% endif %} {% endblock %}