{% extends "tcms_base.html" %} {% load i18n %} {% load static %} {% block subtitle %}{% trans "Add TestCase to TestRun" %}{% endblock %} {% block custom_stylesheet %} {% endblock %} {% block custom_javascript %} {% endblock %} {% block contents %}

Add TestCase(s) to {{ test_run.summary }}

{% trans "Build" %} {{ test_run.build }}
{% trans "Manager" %} {{ test_run.manager.username }}
{% trans "Test Plan" %} {{ test_run.plan.name }} {% trans "All Confirmed Cases" %} {{ confirmed_cases_count }}
{% trans "Test Cases in Run" %} {{ executions_count }}
{% trans "Cases in this Run" %}: {{ executions_count }} {% trans "How to Assign case?" %}
{% for test_case in confirmed_cases %} {% endfor %}
{% trans "ID" %} {% trans "Test Case Summary" %} {% trans "Author" %} {% trans "Created Date" %} {% trans "Category" %} {% trans "Priority" %} {% trans "Selected" %}
{# Hide the check box when it is in the exist_case_runs, and remove it from form submitation #} {{ test_case.case }} {{ test_case.case__summary }} {{ test_case.case__author__username }} {{ test_case.case__create_date }} {{ test_case.case__category__name }} {{ test_case.case__priority__value }}
{% endblock %}