{% load i18n %} {% load comments %} {% load report_tags %} {% load static %} {{ testrun.summary }}
{% trans "Test Execution Report" %}
[{{ test_run.run_id }}] {{ test_run.summary }}
{% trans "Test Plan" %}:{{ test_run.plan.plan_id }}:{{ test_run.plan.name }}
{% trans "Product Version" %}:{{ test_run.product_version }}
{% trans "Manager" %}:{{ test_run.manager.username }}
{% trans "Product" %}:{{ test_run.build.product }}
{% trans "Build" %}:{{ test_run.build }}
{% trans "Default Tester" %}:{{ test_run.default_tester }}
{% trans "Started at" %}:{{ test_run.start_date }}
{% trans "Finished at" %}:{{ test_run.stop_date }}
{% trans "Note" %}:{{ test_run.notes|urlize|linebreaksbr }}
{% trans "Manual Cases" %}{{ mode_stats.manual|percentage:test_case_runs_count }}({{ mode_stats.manual }}/{{ test_case_runs_count }}) {% trans "Automated Cases" %}{{ mode_stats.automated|percentage:test_case_runs_count }}({{ mode_stats.automated }}/{{ test_case_runs_count }})
{% if test_case_runs %} {% for test_case_run in test_case_runs %} {% endfor %}
{% trans "Case-Run ID" %} {% trans "Case ID" %} {% trans "Summary" %} {% trans "Automated" %} {% trans "Tested by" %} {% trans "Category" %} {% trans "Status" %} {% trans "Closed at" %}
{{ test_case_run.case_run_id }} {{ test_case_run.case_id }} {{ test_case_run.case.summary }} {{ test_case_run.case.is_automated }} {{ test_case_run.tested_by.username }} {{ test_case_run.case.category.name }} {{ test_case_run.status.name|upper }} {{ test_case_run.close_date }}
{% if test_case_run.bugs %} {% trans "Bugs ID" %}: {% for bug in test_case_run.bugs %} {{ bug.bug_id }} {% endfor %} {% endif %} {% if test_case_run.user_comments %}

Comments

    {% for comment in test_case_run.user_comments %}
  • {{ comment.user_name }}[{{ comment.submit_date }}]
    {{ comment.comment|urlize|linebreaksbr }}
  • {% endfor %}
{% endif %}
{% endif %}

Total: {{ test_case_runs_count }}

Pending test cases: {{ summary_stats.idle }}

Test run completed: {{ summary_stats.complete|percentage:test_case_runs_count }}

{% if test_case_run_bugs %}

{% trans "Bug List" %}:

{% for bug, bug_url in test_case_run_bugs %} {% endfor %}
{% trans "Bug ID" %} {% trans "Bug Url" %}
{{ bug }} {{ bug_url }}
{% endif %} {% if report_urls %}

{% trans "View all in Issue Tracker" %}

{% trans "Only configured ITs which support multiple bugs are shown" %} {% for name, report_url in report_urls %} {% endfor %}
{% trans "Tracker" %} {% trans "URL" %}
{{ name }} {{ report_url }}
{% endif %}