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

{{ ticket.note }}


{% endif %}
{% if ticket.archive_set.all %} Logs:
    {% for archive in ticket.archive_set.all %}
  • File: {{ archive.file }}

    SHA1: {{ archive.sha1 }}
    Size: {{ archive.size }}
    GET
  • {% endfor %}
{% endif %}
{% for archive in ticket.archive_set.all %} {% endfor %}
{% endblock content %}