{{ milestone.project }} {{ milestone.name }} {{ milestone.bugs|length }} bugs

{% for story in milestone.stories %}
{% if story.name %}
{{ story.name }}
{% else %}
uncategorized
{% endif %}
{% for bug in story.queued %}
{% if bug.assignee %} {{ bug.assignee }} {% endif %} #{{ bug.id }} {{ bug.importance }}
{{ bug.project }}
{{ bug.title }}
{% if bug.branch %} {% endif %}
{% endfor %}
{% for bug in story.in_progress %}
{% if bug.assignee %} {{ bug.assignee }} {% endif %} #{{ bug.id }} {{ bug.importance }}
{% if bug|danger %} {% elif bug|warn %} {% endif %}
{{ bug.project }}
{{ bug.title }}
{% if bug.branch %} {% endif %}
{% endfor %}
{% for bug in story.needs_review %}
{% if bug.assignee %} {{ bug.assignee }} {% endif %} #{{ bug.id }} {{ bug.importance }}
{% if bug|danger %} {% elif bug|warn %} {% endif %}
{{ bug.project }}
{{ bug.title }}
{% if bug.branch %} {% endif %}
{% endfor %}
{% if milestone.show_needs_testing %}
{% for bug in story.needs_testing %}
{% if bug.assignee %} {{ bug.assignee }} {% endif %} #{{ bug.id }} {{ bug.importance }}
{{ bug.project }}
{{ bug.title }}
{% if bug.branch %} {% endif %}
{% endfor %}
{% for bug in story.verified %}
{% if bug.assignee %} {{ bug.assignee }} {% endif %} #{{ bug.id }} {{ bug.importance }}
{{ bug.project }}
{{ bug.title }}
{% if bug.branch %} {% endif %}
{% endfor %}
{% else %}
{% for bug in story.needs_release %}
{{ bug.project }}
{% if bug.assignee %} {{ bug.assignee }} {% endif %} #{{ bug.id }} {{ bug.importance }}

{{ bug.title }}
{% if bug.branch %}
{% endif %}
{% endfor %}
{% endif %} {% for bug in story.released %}
{% if bug.assignee %} {{ bug.assignee }} {% endif %} #{{ bug.id }} {{ bug.importance }}
{{ bug.project }}
{{ bug.title }}
{% if bug.branch %} {% endif %}
{% endfor %}
{% endfor %}
Queued bugs are not In progress, Fix Committed or Fix Released.
In progress bugs are In Progress.
Needs review bugs have a merge proposal that Needs review.
{% if milestone.show_needs_testing %}
Needs testing bugs are Fix Committed or In Progress with an Approved or Merged merge proposal.
Verified bugs are Fix Committed and have the verified tag.
{% else %}
Needs release bugs are Fix Committed or In Progress with an Approved or Merged merge proposal.
{% endif %}
Fix released bugs are Fix Released.