{% extends "helpme/base.html" %} {% load crispy_forms_tags %} {% load helpme_extras %} {% load i18n %} {% block help_content %}
{% trans "Manage Tickets" %} | ||
---|---|---|
{% trans "Created" %}: {{ ticket.created.date }}
{% if support %}
{{ ticket }}
{% else %}
{{ ticket.subject }}
{% endif %}
|
{% trans "Status" %}: {% if ticket.status in negative_status %} {{ ticket.get_status_display }} {% else %} {{ ticket.get_status_display }} {% endif %} | {% if ticket.comments.all|last_visible:comments %} {% with ticket.comments.all|last_visible:comments as comment %} {% if comment.user == user %} {% blocktrans with date=comment.created.date %}You replied {{ date }}{% endblocktrans %} {% else %} {% blocktrans with user=comment.user date=comment.created.date %}{{ user }} replied {{ date }}{% endblocktrans %} {% endif %} {% endwith %} {% else %} {% trans "Waiting for a reply" %} {% endif %} |
{% trans "You have no active tickets." %} |