{% extends "base.html" %} {% block scripts %} {% endblock %} {% block scrsiptsready %} {% endblock %} {% block style %} {% endblock %} {% block content %}
{% if is_read_only %} {% else %}
{% csrf_token %}
{% for next_status in next_statuses %} {% endfor %}
{% for assigned_to in assigned_tos %} {% endfor %}
{% endif %}
{% if can_be_edited %} {% endif %} {% if can_use_private_flags %} {% endif %}

{{ bug.user }}

{{ bug.subject }}

{{ bug.bugstatus.name }}

{% if parent %}

{% with parent as bug %} {% include "bugtrack/templates/blocks/bug_name.html" %} {% endwith %}

{% endif %} {% if bug.depends_on %}

{% with bug.depends_on as bug %} {% include "bugtrack/templates/blocks/bug_name.html" %} {% endwith %}

{% endif %} {% if bug.effects.all %}

{% for bug in bug.effects.all %} {% if forloop.counter0 %}, {% endif %} {% include "bugtrack/templates/blocks/bug_name.html" %} {% endfor %}

{% endif %}

{% for category in categories %} {% if forloop.counter0 %} -> {% endif %} {% include "bugtrack/templates/blocks/category_name.html" %} {% endfor %}

{{ bug.priority.name }}

{{ bug.severity.name }}

{% firstof bug.executor.get_full_name '-' %} / {% firstof bug.tester.get_full_name '-' %}

{% if bug.waiting_for_reply %} {% endif %}

{{ bug.created }}

{{ bug.last_modified }}

{{ watchers }}

{{ bug.assigned_to.get_full_name }}

{{ bug.text|linebreaks }}

{{ bug.estimation }}{% if bug.estimation %}h{% endif %}

{{ bug.duration }}{% if bug.duration %}h{% endif %}

{% for bugentity in bugentities %}
{{ bugentity.user }} {% if bugentity.private %}
{% endif %}{% if bugentity.private_for_my_group %}
{% endif %}
{{ bugentity.created }}
{% if bugentity.text %} {% if bugentity.safe %} {{ bugentity.text|safe|linebreaks }} {% else %} {{ bugentity.text|linebreaks }} {% endif %} {% endif %}
{% for document in bugentity.document_set.all %} {{ document.name }} {% endfor %}

{% endfor %}
{% csrf_token %} Waiting for reply {% if can_use_private_flags %} Private Private for my group {% endif %} {% if user.username == 'sarancs1' %} Safe {% endif %}
Upload file
{% endblock %}