{% load comments %} {% load extra_filters %} {% if review_mode %} {% endif %}

Text:

{{ test_case.text|markdown2html }}

Attachment:

Component:

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

Tag:

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

bug:

Notes:

{{ test_case.notes|urlize|linebreaksbr }}

Comments:

    {% for comment in case_comments %}
  • #{{ forloop.counter }} {{ comment.user.username }} {{ comment.submit_date }}
    {{ comment.comment|urlize|linebreaksbr }} {% if review_mode and comment.user.pk == user.pk %}
    {% endif %}
  • {% endfor %}
{% get_comment_form for test_case as comment_form %} {{ comment_form.comment }} {{ comment_form.content_type }} {{ comment_form.object_pk }} {{ comment_form.timestamp }} {{ comment_form.security_hash }}