{% extends 'index.html' %} {% block content %} {% load static %} {% load i18n %} {% load basefilters %} {% include "helpdesk/ticket/ticket_nav.html" %}
{% if my_tickets or allocated_tickets or all_tickets %}
{% trans "Canceled" %} {% trans "Resolved" %} {% trans "New" %}
{% if request.GET.view != 'card' %}
{% trans "Select All Tickets" %}
{% trans "Unselect All Tickets" %}
{% comment %} {% endcomment %} {% endif %}
{% if request.GET.view == 'card' %} {% include "helpdesk/ticket/ticket_card.html" %} {% else %} {% include "helpdesk/ticket/ticket_list.html" %} {% endif %}
{% else %}

{% trans "There are no tickets at the moment." %}

{% endif %}
{% endblock %}