{% extends "main/base.html" %} {% block title %}Tickets - Archive{% endblock %} {% block header_icon %}{% endblock %} {% block headline %}Archive{% endblock %} {% block head-message %}Overview of all closed tickets in the system{% endblock %} {% block content %}
{% for ticket in tickets %} {% endfor %}
ID Owner Assignee Title Description Closed
{{ ticket.id }} {{ ticket.owner }} {{ ticket.assigned_to }} {{ ticket.title }} {{ ticket.description }} {{ ticket.closed_date|date:"d.m.Y, G:i" }}
{% endblock %}