{% load static %} Printable copy of test plans {% block custom_stylesheet %}{% endblock %} {% for test_plan in test_plans %}
{% if not forloop.first %}
{% endif %}

[{{ test_plan.pk }}] {{ test_plan.name }}

Contents

    {% for test_case in test_plan.result_set %}
  1. [{{ test_case.case_id }}] {{ test_case.summary }}
  2. {% endfor %}

Test Plan Document

{{ test_plan.latest_text.plan_text|safe }}

Test Cases

{{ test_plan.summary|safe }} {% for test_case in test_plan.result_set %}

[{{ test_case.case_id }}] {{ test_case.summary }}

Set up

{{ test_case.setup|safe }}

Actions

{{ test_case.action|safe }}

Expected Results

{{ test_case.effect|safe }}

Breakdown

{{ test_case.breakdown|safe }}
{% endfor %}
{% endfor %}