{% extends "base.html" %} {% block page_title %} Bug {{ bug.id.user() }} – {{ bug.summary|truncate(70) }} {% endblock %} {% block script %} {% endblock %} {% block content %}

Created on {{ bug.time|datetimeformat }} by {{ bug.creator|e }}

edit

Status: {{ bug.status }}
Severity: {{ bug.severity }}
Scheduled for: {{ target }}
Assigned to: {{ assignee|e }}
Permanent ID: {{ bug.uuid }}

edit

{{ bug.summary }}

Comments

{% for comment in bug.comments() %}

{{ comment.author|striptags|e }} said:

{{ comment.body|trim|e }}

{% endfor %}
{% endblock %}