{% extends 'collector/base.html' %} {% load static %} {% block title %}{{ title }}{% endblock title %} {% block main %}
{% csrf_token %} {% for ticket in tickets %}
{% include 'collector/includes/ticket_info.html' %}
{% if ticket.note %}

{{ ticket.note }}

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

    {% for archive in ticket.archive_set.all %} {% include 'collector/includes/ticket_archives.html' %} {% endfor %}
{% endif %}
Open
{% 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 bs %} {% endblock bs %} {% block jquery %} {% endblock jquery %}