{% trans 'Ticket' %}: {{ myticket.ticket }} {% trans 'Active:' %} {{ myticket.active }}
{% trans 'Priority' %}: {{ myticket.get_priority_display }}
{% trans 'Assigned to' %}:
{% for user in myticket.assigned_to.all %}
{{user.username}};
{% endfor %}
{% trans 'Subscribed by' %}:
{% for user in myticket.subscribed_by.all %}
{{user.username}};
{% endfor %}
{% trans 'Abstract' %}: {{ myticket.abstract }}
{% trans 'Description' %}: {{ myticket.description }}
{% trans 'Actions' %}
{% trans 'Active' %} |
{% trans 'Date' %} |
{% trans 'Category' %} |
{% trans 'Description' %} |
{% for action in myticket.ticketaction_set.all %}
{% if action.active %}
{% else %}
{% endif %}
|
{{ action.date }} |
{{ action.get_category_display }} |
{{ action.description }} |
{% endfor %}
{% trans 'Images' %}
{% trans 'Active' %} |
{% trans 'Date' %} |
{% trans 'Category' %} |
{% trans 'Description' %} |
{% trans 'Image' %} |
{% for image in myticket.ticketimage_set.all %}
{% if image.active %}
{% else %}
{% endif %}
|
{{ image.date }} |
{{ image.get_category_display }} |
{{ image.description }} |
|
{% endfor %}
{% trans 'Attachments' %}
{% trans 'Active' %} |
{% trans 'Date' %} |
{% trans 'Mime type' %} |
{% trans 'Size' %} |
{% trans 'File name' %} |
{% for attachment in myticket.ticketattachment_set.all %}
{% if attachment.active %}
{% else %}
{% endif %}
|
{{ attachment.date }} |
{{ attachment.mime_type }} |
{{ attachment.get_size }} |
{{ attachment.get_filename }} |
{% endfor %}
{% endblock %}