{% extends "base.html" %} {% block title %}Tickets — {{ brand }}{% endblock %} {% block content %}

Tickets

{{ tagline }}

{% for t in tickets %}

#{{t.id}} · {{ t.title }}

{{ t.status.replace('_',' ').title() }}

{{ t.description }}

Priority: {{ t.priority }} {% for label in t.label_list() %}{{ label }}{% endfor %}
{% if t.assignee_name or t.assignee_id %}
Assigned to: {{ t.assignee_name or ('<@' ~ t.assignee_id ~ '>') }}
{% endif %}
Updated {{ t.updated_at.strftime('%Y-%m-%d %H:%M') }} UTC
{% else %}
No tickets found.
{% endfor %}
{% endblock %}