{% extends "helpme/base.html" %} {% load crispy_forms_tags %} {% load helpme_extras %} {% load i18n %} {% block help_content %}

{% trans "HELP DESK" %}

{% trans "FAQ" %}
{% trans "ASK THE HELP DESK" %}
{% trans "How can we help you today?" %}
{% if support %}
{% trans "Show" %}:
{% endif %}
{% for ticket in object_list %} {% empty %} {% endfor %}
{% trans "My Help 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." %}
{% if paginator.num_pages > 1 or object_list.count > 1 %}
{% multiply object_list.count paginator.num_pages as entries %} {% blocktrans with start=page_obj.start_index end=page_obj.end_index %}Showing {{ start }} to {{ end }} of {{ entries }} entries{% endblocktrans %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}