{% load template_filters %} {% extends "base.html" %} {% block title %}Amancay BTS interface - Bug View{% endblock %} {% block main_content %}
{% if info_to_user %}
{{ info_to_user }}
{% endif %}
Bug {{ bug_number }} - Severity {{ bug_status.severity }} - Last modified on {{ bug_status.log_modified|tstodate }}
{{ bug_status.subject }}
  • 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 }}
{{ message.body }}
{% endfor %}
Add Comment
    {% if current_user.is_authenticated %}
  • The message will be sent from {{ current_user.email }}
  • {% else %}
  • {% endif %}
{% endif %}
{% endblock %}