{% load i18n %}
{{ ticket.id }}. {{ ticket.title }} [{{ ticket.get_status }}] | |
{% blocktrans with ticket.queue as queue %}Queue: {{ queue }}{% endblocktrans %} | |
---|---|
{% trans "Submitted On" %} | {{ ticket.created|date:"r" }} ({{ ticket.created|timesince }} ago) |
{% trans "Assigned To" %} | {{ ticket.get_assigned_to }}{% ifequal ticket.get_assigned_to _('Unassigned') %} {% endifequal %} |
{% trans "Submitter E-Mail" %} | {{ ticket.submitter_email }}{% if user.is_superuser %} {% trans "Ignore" %}{% endif %} |
{% trans "Priority" %} | {{ ticket.get_priority_display }} |
{% trans "Copies To" %} | {% for ticketcc in ticket.ticketcc_set.all %}{{ ticketcc.display }}{% if not forloop.last %}, {% endif %}{% endfor %} {% trans "Manage" %} |
{% trans "Tags" %} | {{ ticket.tags }} |
{{ customfield.field.label }} | {{ customfield.value }} |
{% trans "Description" %} | |
{{ ticket.description|force_escape|urlizetrunc:50|linebreaksbr }} | |
{% trans "Resolution" %}{% ifequal ticket.get_status_display "Resolved" %} ![]() |
|
{{ ticket.resolution|force_escape|urlizetrunc:50|linebreaksbr }} |