{% extends "dashboard_app/_content.html" %} {% load django_tables2 %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content %} {% for trinfo in test_run_info %}

{{ trinfo.key }} results

{% if trinfo.only %}

Results were only present in build {{ trinfo.tag }}.

{% elif trinfo.table %} {% render_table trinfo.table %} {% else %}

No difference in {{ trinfo.key }} results{% if trinfo.cases %} for {{ trinfo.cases }}{% endif %}.

{% endif %} {% endfor %} {% endblock %}