{% extends "tcms_base.html" %} {% load static %} {% block subtitle %}Add cases from other plans{% endblock %} {% block custom_stylesheet %} {% endblock %} {% block custom_javascript %} {% endblock %} {% block contents %}
Home >> Planning >> {{ test_plan.plan_id }}: {{ test_plan.name }} >> Add cases from other plans

{{ test_plan.name }}

Search cases to add into this test plan.
{% include "case/form/quick_search.html" %}
{% include "case/form/search.html" %}
{{ search_form.errors|default:quick_form.errors }}
{% if test_cases %}
{% for test_case in test_cases %} {% endfor %}
ID Summary Author Default Tester Priority Created Status
{{ test_case.case_id }} {{ test_case.summary }} {{ test_case.author.email }} {{ test_case.default_tester.email }} {{ test_case.priority }} {{ test_case.create_date }} {{ test_case.case_status}}
{% else %}
No test cases found.
{% endif %}
{% endblock %}