{% extends 'collector/base.html' %} {% load static %} {% load collector_extras %} {% block title %} {{ title }} {% endblock title %} {% block main %}
{% csrf_token %}
{% include 'collector/includes/ticket_info.html' %}
{% if ticket.note %}
Note:
{{ ticket.note | markdown | safe }}
{% endif %}
{% if ticket.archive_set.all %}
    {% for archive in ticket.archive_set.all %} {% include 'collector/includes/ticket_archives.html' %} {% endfor %}
{% endif %}
Edit
{% for archive in ticket.archive_set.all %} {% include 'collector/includes/modal_archive.html' %} {% endfor %} {% include 'collector/includes/modal_ticket.html' %}
{% endblock main %} {% block jquery %} {% endblock jquery %}