{% extends "base.html" %} {% load i18n %} {% load static %} {% load comments %} {% load extra_filters %} {% block title %}TR-{{ object.pk }}: {{ object.summary }}{% endblock %} {% block body_class %}cards-pf{% endblock %} {% block contents %}

TR-{{ object.pk }}: {{ object.summary }}

{% trans 'Test plan' %}: TP-{{ object.plan.pk }}: {{ object.plan.name }}

{% trans 'Product' %}: {{ object.plan.product }}

{% trans 'Version' %}: {{ object.plan.product_version.value }}

{% trans 'Build' %}: {{ object.build }}

{% trans 'Manager' %}: {{ object.manager.username }}

{% if object.default_tester %}

{% trans 'Default tester' %}: {{ object.default_tester.username }}

{% endif %}

{% trans 'Planned start' %}: {{ object.planned_start|default:'-'}}

{% trans 'Started at' %}: {{ object.start_date|default:'-' }} {% if not object.start_date %} {% endif %}

{% trans 'Planned stop' %}: {{ object.planned_stop|default:'-' }}

{% trans 'Finished at' %}: {{ object.stop_date|default:'-' }} {% if not object.stop_date %} {% endif %}

    {% for status in execution_statuses%}
  • -
  • {% endfor %}
-
{{ object.notes|markdown2html }}
{% trans "Environment" as environment_title %} {% include "include/properties_card.html" with card_title=environment_title hide_add_button=True hide_delete_button=True %}
{% include 'include/tags_card.html' with add_perm=perms.testruns.add_testruntag %}

{% trans 'Test executions' %}

{% if perms.testruns.add_testexecution %}
{% endif %}
{% trans 'records' %}
{% include 'include/attachments.html' %}

{% trans "Notify" %}

{% for user in object.cc.all %} {% endfor %} {% if perms.testruns.change_testrun %} {% endif %}
{% trans "Username" %}
{{ user.username }} {% if perms.testruns.change_testrun %} {% endif %}
{{ comment_form.media }} {% include 'include/comments_for_object_template.html' %} {% endblock %}