{% load i18n %} {% load comments %} {% load extra_filters %} {% if review_mode and perms.django_comments.add_comment %} {% endif %}

{% trans "Text" %}:

{{ test_case.text|markdown2html }}

{% trans "Attachment" %}:

{% trans "Component" %}:

    {% for component in components %}
  • {{ component.name }}
  • {% empty %}
  • {% trans "No component found" %}
  • {% endfor %}

{% trans "Tag" %}:

    {% for tag in tags %}
  • {{ tag }}
  • {% empty %}
  • {% trans "No tag found" %}
  • {% endfor %}

{% trans "bug" %}:

{% trans "Notes" %}:

{{ test_case.notes|urlize|linebreaksbr }}

{% trans "Comments" %}:

{% for comment in case_comments %}
#{{ forloop.counter }} {{ comment.user.username }} {{ comment.submit_date }}
{% if review_mode and comment.user.pk == user.pk %}
{% endif %}
{{ comment.comment|urlize|linebreaksbr }}
{% endfor %}