{% extends "layouts/content-bootstrap.html" %} {% load i18n %} {% block content %}

Test suite {{ suite.name }} for job {{ job_link }}

{% if not test_cases %} {% for testset in sets %}

Test Set: {{ testset.name }}

{% for testcase in testset.test_cases.all %}
Test Case:
{{ testcase.name }}
Result:
{{ testcase.result_code }}
{% if testcase.measurement %}
Measurement:
{{ testcase.measurement }} {{ testcase.units }}
{% endif %}
{% endfor %} {% endfor %} {% endif %} {% for testcase in test_cases %} {% if testcase.test_set %}

Test Set: {{ testcase.test_set.name }}

{% endif %}

{{ testcase.name }}

{% if testcase.test_set %} {% if test_cases|length > 1 %} {{ testcase.test_set }}/{{ testcase.name }} {% endif %} {% endif %} {% if testcase.action_metadata %} {% else %}
Result
{{ testcase.result_code }}
{% if testcase.measurement >= 0.0 %}
Measurement
{{ testcase.measurement|floatformat:2 }} {{ testcase.units }}
{% endif %}
{% endif %} {% endfor %} {% endblock %}