{% extends "tcms_base.html" %} {% load static %} {% block subtitle %}Clone test run - {{ test_run.summary }}{% endblock %} {% block custom_stylesheet %} {% endblock %} {% block custom_javascript %} {% endblock %} {% block content_type %} {% endblock %} {% block contents %}
Home >> ... >> ... >> {{ test_run.summary }} >> Clone

Clone Test Run - {{ test_run.summary }}

{% csrf_token %} {# Working around for the bug https://bugzilla.redhat.com/show_bug.cgi?id=715499 #}
{{ clone_form.summary }}
{{ clone_form.summary.errors }}
{{ clone_form.product }}
{{ clone_form.product_version }}{{ clone_form.product_version.errors }} Add Product Version
{{ clone_form.build }}{{ clone_form.build.errors }} Add Build
{{ clone_form.manager }}
{{ clone_form.manager.errors }}
{{ clone_form.default_tester }}
{{ clone_form.default_tester.errors }}
{{ clone_form.auto_update_run_status }} {{ clone_form.auto_update_run_status.help_text }}
{{ clone_form.estimated_time }}
{{ clone_form.notes }}
{% for env_value in test_run.env_value.all %}
{% empty%}

There is no more environment properties in this run.

{% endfor %}
{{ clone_form.keep_status }} {{ clone_form.keep_status.label }}     {{ clone_form.keep_assignee }} {{ clone_form.keep_assignee.label }}
{{ clone_form.errors }}
Selected cases {{ test_run.case_run.count }}: {% for case_run in cases_run.all %} {% endfor %}
ID Test Case Summary Author Created Date Status Category Priority Sortkey Action
{{ case_run.case_id }} {{ case_run.case.summary }} {{ case_run.case.author.email }} {{ case_run.case.create_date }} {{ case_run.case.case_status }} {{ case_run.case.category }} {{ case_run.case.priority }} {{ case_run.sortkey }} remove
{% endblock %}