{% extends "tcms_base.html" %} {% load i18n %} {% load static %} {% block subtitle %}{{ test_run.summary }}{% endblock %} {% block custom_javascript %} {% endblock %} {% block content_type %} {% endblock %} {% block contents %}
{% if perms.testruns.change_testexecution %} {% else %} {% endif %} {% if perms.testruns.add_testrun %} {% else %} {% endif %} {% if perms.testruns.delete_testrun %} DELETE {% endif %}

{{ test_run.summary }}

{% trans "Product Version" %} :
{% trans "Manager" %} :
{% trans "Started at" %} :
{{ test_run.start_date|date:"Y-m-d H:i:s" }}
{% trans "Tags" %} :
    {% for tag in test_run.tag.all %}
  • {{ tag }} {% if perms.testruns.delete_testruntag %} {% endif %}
  • {% endfor %}
{% 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/status_statistics.html' %}
{% include 'run/get_case_runs.html' %}
{% endblock %}