#{{ 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 %} {% else %}

None.

{% endif %}
blocks
{% if blocks %} {% else %}

None.

{% endif %}

Subtasks

{% if subtasks %}
    {% for subtask in subtasks %}
  • #{{ subtask.num }} {{ subtask.title }} {{ subtask.status }}
  • {% endfor %}
{% else %}

No subtasks.

{% endif %}

History / audit log

{% if history %}
    {% for item in history %}
  • {{ item.changed_at }}
    {{ item.message }}
  • {% endfor %}
{% else %}

No history yet.

{% endif %}