{% for status in status_order %}
{{ status.name }} ({{ tests[status] | length }})
test name
elapsed
status
{% if status in has_any_log %}
LOG
{% endif %}
{% for t in tests[status] %}
{{ t.full_name }}
{{ t.elapsed_display }}
{{ t.status_display }}
{% if status in has_any_log %}
{% if t.log_url %}
LOG
{% else %} {% endif %}
{% endif %}
{% endfor %}
{% endfor %}