{% 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:executions_count }}({{ mode_stats.manual }}/{{ executions_count }}) {% trans "Automated Cases" %}{{ mode_stats.automated|percentage:executions_count }}({{ mode_stats.automated }}/{{ executions_count }})
{% if executions %} {% for execution in executions %} {% endfor %}
{% trans "Case-Run ID" %} {% trans "Case ID" %} {% trans "Summary" %} {% trans "Automated" %} {% trans "Tested by" %} {% trans "Category" %} {% trans "Status" %} {% trans "Closed at" %}
{{ execution.case_run_id }} {{ execution.case_id }} {{ execution.case.summary }} {{ execution.case.is_automated }} {{ execution.tested_by.username }} {{ execution.case.category.name }} {{ execution.status.name|upper }} {{ execution.close_date }}
{% for bug in execution.get_bugs %} {% if forloop.first %}

{% trans "Bugs" %}:

{% endif %} {{ bug.url }}
{% endfor %} {% if execution.user_comments %}

{% trans "Comments" %}:

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

Total: {{ executions_count }}

Pending test cases: {{ summary_stats.idle }}

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


{% for execution in executions %} {% for bug in execution.get_bugs %} {% endfor %} {% endfor %}
{% trans "Bug List" %}
{{ bug.url }}