{% extends 'collector/base.html' %} {% load static %} {% load collector_extras %} {% block title %} {{ title }} {% endblock title %} {% block main %}
{% csrf_token %} {% for ticket in tickets %} {% include 'collector/includes/modal_ticket.html' %} {% for archive in ticket.archive_set.all %} {% include 'collector/includes/modal_archive.html' %} {% endfor %} {% endfor %} {% include 'collector/includes/pagination.html' %}
{% endblock main %} {% block jquery %} {% endblock jquery %}