{% if perms.testruns.change_testexecution %}
EDIT
{% endif %}
{% if perms.testruns.add_testrun %}
{% else %}
{% endif %}
{% if perms.testruns.delete_testrun %}
DELETE
{% endif %}
{{ test_run.summary }}
{% trans "Test Plan" %} :
{% trans "Product Version" %} :
{% trans "Manager" %} :
{% trans "Started at" %} :
{{ test_run.start_date|date:"Y-m-d H:i:s" }}
{% trans "Tags" %} :
{% if perms.testruns.add_testruntag %}
{% endif %}
{% trans "Note" %} :
{{ test_run.notes|urlize|linebreaksbr }}
{% trans "Product" %} :
{% trans "Build" %} :
{% trans "Default Tester" %} :
{% if test_run.default_tester %}
{{ test_run.default_tester.username }}
{% else %}
{{ test_run.default_tester }}
{% endif %}
{% trans "Status" %} :
{% if test_run.stop_date %}
{% trans "Finished" %}
{% if perms.testruns.change_testrun %}
{% endif %}
{% else %}
{% trans "Running" %}
{% if perms.testruns.change_testrun %}
{% endif %}
{% endif %}
{% trans "Finished at" %} :
{{ test_run.stop_date|date:"Y-m-d H:i:s" }}
{% trans "CC" %} :
{% include 'run/get_cc.html' %}
{% include 'run/get_case_runs.html' %}