{% extends 'collector/base.html' %} {% block content %} {% include 'collector/navigation.html' %}
{% for ticket in tickets %}
Ticket: {{ ticket.number }}
{{ ticket.time_create }}
Platform: {{ ticket.platform.pretty_name }}
Owner: {{ ticket.user.username }}
{% if ticket.note %}

{{ ticket.note }}

{% endif %} {% if ticket.archive_set.all %}

{% endif %}
{% endfor %} {% include 'collector/pagination.html' %}
{% endblock content %}