TICKET_DETAIL_HTML = r"""{% extends "base.html" %} {% block title %}#{{ t.id }} — {{ t.title }} · {{ brand }}{% endblock %} {% block content %}

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

{{ t.status.replace('_',' ').title() }} Priority: {{ t.priority }} {% for label in t.label_list() %}{{ label }}{% endfor %}
{% if can_manage %} Edit {% endif %}

{{ t.description }}


Comments

{% for c in t.comments %}
{{ c.author_name }} · {{ c.created_at.strftime('%Y-%m-%d %H:%M') }} UTC
{{ c.body }}
{% else %}
No comments yet.
{% endfor %}
{% if user %}
{% endif %}
{% endblock %} """