{% extends "helpdesk/public_base.html" %}{% load i18n humanize %} {% load static from staticfiles %} {% block helpdesk_title %}{% trans "View a Ticket" %}{% endblock %} {% block helpdesk_body %} {% for customfield in ticket.ticketcustomfieldvalue_set.all %} {% endfor %} {% if tags_enabled %} {% endif %} {% if ticket.resolution %}{% endif %}
{{ ticket.ticket }} . {{ 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|naturaltime }})
{% trans "Submitter E-Mail" %} {{ ticket.submitter_email }}
{% trans "Priority" %} {{ ticket.get_priority_display }}
{{ customfield.field.label }} {{ customfield.value }}
{% trans "Tags" %} {{ ticket.tags }}
{% trans "Description" %}
{{ ticket.description|force_escape|urlizetrunc:50|linebreaksbr }}
{% trans "Resolution" %}{% if ticket.get_status_display == "Resolved" %} {% endif %}
{{ ticket.resolution|urlizetrunc:50|linebreaksbr }}
{% 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|urlizetrunc:50|num_to_link|linebreaksbr }} {% if followup.ticketchange_set.all %}
{% endif %} {% for attachment in followup.attachment_set.all %}{% if forloop.first %}
{% endif %} {% endfor %}
{% endfor %} {% endif %} {% endblock %}