{% if test_results %}
{% if test_results.n_errors %}
A test ran at {{ test_results.time }} and there were {{ test_results.n_errors }} errors in total
{% else %}
A test ran at {{ test_results.time }} and there were no errors
{% endif %}
{% endif %}
{{ content.description }}
{% for test in content.children %}
{{ test.description }}
Tests
{% for scenario in test.children %}
{{ scenario.description }}
{% if scenario.children %}
{% for event in scenario.children %}
{{ event.description }}
{% if test_results %}
{% for test_result in test_results.results %}
{% if test_result.css_id==event.id and not test_result.ok %}
Test failed for browser {{ test_result.browser }}
{{ test_result.errors }}