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

Logo {{ title }}

{% else %}

{{ title }}

{% endif %}

Data start time: {{ content['start_time'] }}
Data end time: {{ content['end_time'] }}
Number of variables: {{ content['num_data_columns']}}
Number of test failures: {{ content['num_test_results'] }}

{% 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'] }}
{% endif %} {% if content['config'] %} Configuration Options:
{{ content['config'] }}


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