{% extends 'tickets/layout.html' %} {% load i18n %} {% load static %} {% block tickets_content %}

{% trans 'Tickets' %}

{% trans 'Before creating a ticket, please check if you question is convered in' %} {% trans 'the FAQ' %}.

{% if tickets %}

{% trans 'Your open tickets' %}

{% for ticket in tickets %} {% endfor %}
#{% trans 'ID' %} {% trans 'Subject' %} {% trans 'Status' %}
#{{ticket.id}} {{ ticket.subject }} {{ ticket.status_text }}
{% if tickets.has_previous or tickets.has_next %}

{% if tickets.has_previous %} < {% endif %} {{ tickets.number }} {% if tickets.has_next %} > {% endif %}

{% endif %} {% endif %} {% endblock %}