You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.4 KiB
HTML

{% extends 'tickets/layout.html' %}
{% load i18n %}
{% load static %}
{% block pagetitle %}{% trans 'Your Tickets' %}{% endblock %}
{% block tickets_content %}
<p>{% trans 'Before creating a ticket, please check if you question is convered in' %}
<a href="/page/faq">{% trans 'the FAQ' %}</a>.
</p>
{% if tickets %}
<h2>{% trans 'Your open tickets' %}</h2>
<table class="admin-list">
<thead>
<tr>
<td>#{% trans 'ID' %}</td>
<td>{% trans 'Subject' %}</td>
<td>{% trans 'Status' %}</td>
</tr>
</thead>
<tbody>
{% for ticket in tickets %}
<tr>
<td>#{{ticket.id}}</td>
<td><a href="{% url 'tickets:view' ticket.id %}">{{ ticket.subject }}</a></td>
<td>{{ ticket.status_text }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% if tickets.has_previous or tickets.has_next %}
<p class="pages">
{% if tickets.has_previous %}
<a href="?{{ filter }}&amp;page={{ tickets.previous_page_number }}">&lt;</a>
{% endif %}
<a href="?{{ filter }}&amp;page={{ tickets.number }}">{{ tickets.number }}</a>
{% if tickets.has_next %}
<a href="?{{ filter }}&amp;page={{ tickets.next_page_number }}">&gt;</a>
{% endif %}
</p>
{% endif %}
{% endif %}
{% endblock %}