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

Setup:

{{ test_case_text.setup|markdown2html }}

Breakdown:

{{ test_case_text.breakdown|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:

Actions:

{{ test_case_text.action|markdown2html }}

Expected Results:

{{ test_case_text.effect|markdown2html }}

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 }}