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

Help Desk

Show:
{% for ticket in object_list %} {% empty %} {% endfor %}
Manage Tickets
Created: {{ ticket.created.date }} Status: {% if ticket.status in negative_status %} {% else %} {% endif %} {{ticket.get_status_display}} {% if ticket.comments.all|last_visible:comments %} {% with ticket.comments.all|last_visible:comments as comment %} {% if comment.user == user %} You replied {{ comment.created.date }} {% else %} {{ comment.user }} replied {{ comment.created.date }} {% endif %} {% endwith %} {% else %} Waiting for a reply {% endif %}
You have no active tickets.
{% if paginator.num_pages > 1 or object_list.count > 1 %}
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {% multiply object_list.count paginator.num_pages %} entries
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}