{% extends "tcms_base.html" %} {% load static %} {% load i18n %} {% block subtitle %}{% trans "Add cases from other plans" %}{% endblock %} {% block custom_javascript %} {% endblock %} {% block contents %}

{{ test_plan.name }}

{% trans "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 %}
{% trans "ID" %} {% trans "Summary" %} {% trans "Author" %} {% trans "Default Tester" %} {% trans "Priority" %} {% trans "Created" %} {% trans "Status" %}
{{ test_case.case_id }} {{ test_case.summary }} {{ test_case.author.username }} {% if test_case.default_tester %} {{ test_case.default_tester.username }} {% endif %} {{ test_case.priority }} {{ test_case.create_date }} {{ test_case.case_status}}
{% else %}
{% endif %}
{% endblock %}