#{{ ticket.num }} {{ ticket.title }}
Back to project
{{ ticket.status }}
priority: {{ ticket.priority }}
{% if ticket.tags %}
{% for tag in ticket.tags %}
{{ tag }}
{% endfor %}
{% endif %}
Description
{% if ticket.description %}{{ ticket.description }}
{% else %}No description.
{% endif %} {% if ticket.close_note %}Close notes
{{ ticket.close_note }}
{% endif %}Dependencies
blocked by
{% if blocked_by %}
-
{% for dep in blocked_by %}
- #{{ dep.num }} {{ dep.title }} {% endfor %}
None.
{% endif %}blocks
{% if blocks %}
-
{% for dep in blocks %}
- #{{ dep.num }} {{ dep.title }} {% endfor %}
None.
{% endif %}Subtasks
{% if subtasks %}-
{% for subtask in subtasks %}
- #{{ subtask.num }} {{ subtask.title }} {{ subtask.status }} {% endfor %}
No subtasks.
{% endif %}History / audit log
{% if history %}-
{% for item in history %}
-
{{ item.changed_at }}{{ item.message }}
{% endfor %}
No history yet.
{% endif %}