{% extends "base.html" %} {% load i18n %} {% block content %}
{% if user %}

{{user}} {% trans 'tickets' %}

{% else %}

{% trans 'Tickets' %}

{% endif %}
{% for ticket in page_obj %} {% if ticket.active %} {% endif %} {% empty %}
  • {% trans 'No tickets.' %}
  • {% endfor %}
    {% trans 'Ticket' %} {% trans 'Priority' %} {% trans 'Station' %} {% trans 'Created' %} {% trans 'Abstract' %}
    {{ ticket.ticket}} {{ ticket.get_priority_display}} {{ ticket.stationmetadata}} {{ ticket.date}} {{ ticket.abstract}}
    {% endblock %}