{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %} {% if object %} {% trans "Edit TestRun" %} {% elif is_cloning %} {% trans "Clone TestRun" %} {% else %} {% trans "New TestRun" %} {% endif %} {% endblock %} {% block contents %}
{% csrf_token %}
+

{% trans "Product" %}: {{ test_plan.product.name }}, {% trans "version" %} {{ test_plan.product_version.value }}

{{ form.manager.errors }}
{{ form.default_tester.errors }}
{% if test_cases %} {# Working around for the bug https://bugzilla.redhat.com/show_bug.cgi?id=715499 #}
{% trans "Selected TestCase(s):" %} {% if disabled_cases %} {% blocktrans with count=disabled_cases %}{{ count }} of the pre-selected test cases is not CONFIRMED and will not be cloned! See test plan for more details!{% endblocktrans %} {% endif %}
{% for test_case in test_cases %} {% endfor %}
{% trans "Summary" %} {% trans "Author" %} {% trans "Created on" %} {% trans "Status" %} {% trans "Category" %} {% trans "Priority" %}
TC-{{ test_case.pk }}: {{ test_case.summary }} {{ test_case.author.username }} {{ test_case.create_date }} {{ test_case.case_status }} {{ test_case.category }} {{ test_case.priority }}
{% endif %}
{% endblock %}