{% extends "report/common/search_run.html" %} {% block report %} {% if report_data %} {% if queries %}
{% endif %}
{% for tag_name, plans_count, runs_count, caseruns_count, matrix_rows in report_data.reports %}
{% for build, plan, run, status_subtotal in matrix_rows %} {% if build.1 is not None %} {% endif %} {% if plan.1 is not None %} {% endif %} {% endfor %}
Build Plan Run Idle Running Paused Passed Failed Blocked Error Waived
{{ build.0.name }} [{{ plan.0.pk }}] {{ plan.0.name }} {{ run.summary }} {{ status_subtotal.IDLE|default:0 }} {{ status_subtotal.RUNNING|default:0 }} {{ status_subtotal.PAUSED|default:0 }} {{ status_subtotal.PASSED|default:0 }} {{ status_subtotal.FAILED|default:0 }} {{ status_subtotal.BLOCKED|default:0 }} {{ status_subtotal.ERROR|default:0 }} {{ status_subtotal.WAIVED|default:0 }}
{% empty %}
Build Plan Run Idle Running Paused Passed Failed Blocked Error Waived
No report data.
{% endfor %} {% endif %} {% endblock %}