{% load template_filters %} {% extends "base.html" %} {% block title %}Amancay BTS interface - Bug View{% endblock %} {% block main_content %}
Bug {{ bug_number }} - Severity {{ bug_status.severity }} - Last modified on {{ bug_status.log_modified|tstodate }}
{{ bug_status.subject|escape }}
  • Package: {{ bug_status.package }}
  • {% if bug_status.tags %}
  • Tags: {{ bug_status.tags }}
  • {% endif %} {% if bug_status.found_versions|length %}
  • Found in: {{ bug_status.found_versions|join:", " }}
  • {% endif %}
{% if bug_messages %} {% for message in bug_messages %}
{% if message.from.0 %} {{ message.from.0 }} said {% endif %} on {{ message.date|tstodate }}:
{{ message.subject|escape }}
{{ message.body|escape }}
{% endfor %} {% include "bug_actions.html" %} {% include "bug_forms.html" %} {% endif %}
{% endblock %}