{% for test_run in test_runs %}
{{ test_run.name }}
{% endfor %}
{% for test_run in test_runs %}
{% for result_type, group in test_run.groups.items %}
{{ result_type }}
{% endfor %}
{% for result_type, group in test_run.groups.items %}
{% for description, test_list in group.tests %} {% if test_list %}
{{ description }}
{% endif %} {% endfor %}
{% endfor %}
{% endfor %}