{% extends "main/base.html" %} {% block title %}Tickets - All tickets{% endblock %} {% block header_icon %}{% endblock %} {% block headline %}All open Tickets{% endblock %} {% block head-message %}Overview of all open tickets in the system{% endblock %} {% block content %}
{% for ticket in tickets %} {% endfor %}
ID Status Owner Assignee Title Description
{{ ticket.id }} {% if ticket.status == "TODO" %} TODO {% elif ticket.status == "IN PROGRESS" %} IN PROGRESS {% elif ticket.status == "WAITING" %} WAITING {% elif ticket.status == "DONE" %} DONE {% else %} {{ ticket.status }} {% endif %} {{ ticket.owner }} {% if ticket.assigned_to %}{{ ticket.assigned_to }}{% else %}---{% endif %} {{ ticket.title }} {{ ticket.description }}
{% endblock %}