{% extends "base.html" %} {% load i18n %} {% load static %} {% load comments %} {% load extra_filters %} {% block title %}BUG-{{ object.pk }}: {{ object.summary }}{% endblock %} {% block body_class %}cards-pf{% endblock %} {% block head %} {% get_comment_list for object as comments %} {{ comment_form.media }} {% endblock %} {% block contents %}

BUG-{{ object.pk }}: {{ object.summary }} {% if object.status %} {% else %} {% endif %}

{{ object.created_at }}

{% trans 'Reporter' %}: {{ object.reporter.username }}

{% trans 'Assignee' %}: {% if object.assignee %} {{ object.assignee.username }} {% else %} - {% endif %}

{% trans 'Product' %}: {{ object.product }}

{% trans 'Version' %}: {{ object.version }}

{% trans 'Build' %}: {{ object.build }}

{% include 'include/tags_card.html' with add_perm=perms.bugs.add_bugtag %}
{% include 'include/attachments.html' %}
{% include 'include/tc_executions.html' %}
{% get_comment_list for object as comments %} {% for comment in comments %}

{{ comment.user }} {% trans 'commented on' %} {{ comment.submit_date }}

{{ comment.comment|markdown2html }}
{% endfor %} {% if perms.django_comments.add_comment %}
{{ comment_form.text }}
{{ comment_form.text.errors }}
{% if not object.status %} {% else %} {% endif %}
{% endif %}
{% endblock %}