{% extends "tcms_base.html" %} {% load static %} {% block subtitle %}Choose test run to assign case{% endblock %} {% block custom_stylesheet %} {% endblock %} {% block custom_javascript %} {% endblock %} {% block contents %}
Home >> ... >> [{{ plan.plan_id }}]{{ plan.name }} >> Add test case to runs

Plan:{{ plan.name }}

{% csrf_token %} {% for test_run in test_runs %} {% empty %} {% endfor %}
TestRun ID Test Run Summary Build Manager Test Plan
{# Hide the check box when it is in the exist_case_runs, and remove it from form submitation #} {{ test_run.pk }} {{ test_run.summary }} {{ test_run.build__name }} {{ test_run.manager__username }} {{ plan.name }}
This plan has no test runs.
Cases to be added: {{ test_cases|length }} How to Assign case?
{% for test_case in test_cases %} {% empty %} {% endfor %}
ID Test Case Summary Author Created Date Category Priority Sort Key Selected
{{ test_case.pk }} {{ test_case.summary }} {{ test_case.author__username }} {{ test_case.create_date }} {{ test_case.category__name }} {{ test_case.priority__value }} {{ test_case.sortkey }}
No test cases selected.
{% endblock %}