{% extends "base.html" %} {% block title %}#{{ item.id }} {{ item.title }}{% endblock %} {% block crumb_leaf %}/#{{ item.id }}{% endblock %} {% block content %}

#{{ item.id }} {{ item.title }}

{{ item.item_type }} {{ item.priority }} {{ item.status }} {% if item.component %}{{ item.component }}{% endif %} {% for t in item.tags %}{{ t }}{% endfor %}
{% if item.source_file %}

source: {{ item.source_file }}{% if item.source_lines %}:{{ item.source_lines }}{% endif %}

{% endif %} {% if item.description %}
{{ item.description | render_markdown }}
{% endif %} {% if item.resolution %}

Resolution

{{ item.resolution | render_markdown }}
{% endif %}
{% set _done = item.progress.done if item.progress else 0 %} {% set _total = item.progress.total if item.progress else (item.checkpoints | length) %}

Checkpoints {{ _done }}/{{ _total }}

{% if _total %}
{% endif %} {% if item.checkpoints %} {% else %}

No checkpoints.

{% endif %}

Notes

{% if item.notes %}
    {% for n in item.notes %}
  1. {{ n.note | render_markdown }}
  2. {% endfor %}
{% else %}

No notes.

{% endif %}
{% endblock %}