{% extends "support_tickets/base.html" %} {% load i18n %} {% load crispy_forms_tags %} {% load markup_tags %} {% block head_title %}{% trans "Tickets list" %}{% endblock %} {% block content %}

{% trans "Tiket" %} #{{ ticket.pk }}: {{ ticket.subject }}

{% for comment in comments_list %}
avatar
{{ comment.user }}
{% trans "Posted on" %}: {{ comment.created }}
{{ comment.description | apply_markup:comment.markup }} {% if comment.attachments.all %}
{% trans "Attachments" %}: {% endif %}
{% endfor %}
{% if not ticket.is_closed %}
{% trans "New message" %}
{% csrf_token %} {{ form|crispy }}
{% endif %}
{% trans "Ticket Properties" %}
{% csrf_token %} {{ ticket_properties_form|crispy }}
{{ ticket.get_status_display }} - {{ ticket.get_priority_display }}
{% trans "Created" %} {{ ticket.created }}
{% trans "Updated" %} {{ ticket.last_active }}
{% trans "Category" %} {{ ticket.category }}
{% trans "Agent" %} {{ ticket.agent }}
{% trans "Submitter info" %}
{% trans "Full Name" %} {{ ticket.submitter.first_name }} {{ ticket.submitter.last_name }}
{% trans "Username" %} {{ ticket.submitter.username }}
{% trans "Date joined" %} {{ ticket.submitter.date_joined }}
{% endblock %}