{% extends "tcms_base.html" %} {% load comments %} {% load static %} {% load report_tags %} {% block subtitle %}TestCaseRuns{% endblock %} {% block custom_stylesheet %} {% endblock %} {% block custom_javascript %} {% endblock %} {% block contents %}
{% if form_errors %}
{{ form_errors }}
{% else %}

caseruns - {{ test_case_runs_count }}

{% for test_case_run, status_name, priority_value, tester, assignee in test_case_runs %} {% empty %} {% endfor %}
Case Run ID Case ID Summary Tester Assignee Automated Category Priority Status Sort
#{{ test_case_run.pk }} {{ test_case_run.case.summary }} {% if tester.1 %} {{ tester.1 }} {% else %}None{% endif %} {% if assignee.1 %} {{ assignee.1 }} {% else %}None{% endif %} {{ test_case_run.case.get_is_automated_status }} {{ test_case_run.case.category }} {{ priority_value }} {{ test_case_run.sortkey }}
No case run found
{% endif %}
{% endblock %}