{% extends "base.html" %} {% block content %}

BMO-{{ issue.id }}: {{ issue.title }}

{{ issue.status }} {{ issue.priority }} {{ issue.kind }} {% if issue.assignee %}{{ issue.assignee }}{% endif %}
{% if issue.description %}
{{ issue.description }}
{% endif %} {% if comments %}

Comments

{% for c in comments %}
{{ c.author | default("anonymous") }}: {{ c.body }}
{% endfor %} {% endif %}
{% endblock %}