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

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

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

{{ t.description }}

{% set done,total = checklist_progress(t) %} {% if total %}

Checklist

Progress{{ done }}/{{ total }}
{% endif %}

Comments

{% for c in t.comments %}
{{ c.author_name }} · {{ reltime(c.created_at) }}
{{ c.body }}
{% else %}
No comments yet.
{% endfor %}
{% if user %}
{% endif %}
{% endblock %}