{% extends "base.html" %} {% block head %} {{ title }} {{ super() }} {% endblock %} {% block body %}
{% if logo %} Logo {% endif %}

{{ title }}

Start time: {{ content['start_time'] }}
End time: {{ content['end_time'] }}
Test Failures: {{ content['num_test_results'] }}
Notes: {{ content['num_notes'] }}

{% for im in content['custom_graphics'] %} {% if encode %} Image not loaded
{% else %} Image not loaded
{% endif %} {% endfor %} {% if content['num_metrics']|int > 0 %}

Performance Metrics:

{{ content['metrics'] }}
{% endif %} {% if content['num_test_results']|int > 0 %}

Test Results:

{{ content['test_results'] }}
{% for im in content['test_results_graphics'] %} {% if encode %} Image not loaded
{% else %} Image not loaded
{% endif %} {% endfor %} {% endif %} {% if content['num_notes']|int > 0 %}

Notes:

{{ content['notes'] }}
{% else %}

Notes:

None

{% endif %} {% if content['config'] %} Configuration Options:
{{ content['config'] }}


{% endif %} {{ super() }} {% endblock %}