{% extends "base.html" %} {% block title %} BAANGT Dashboard {% endblock %} {% block content %}
{% if data.names %}
Filters:
{% endif %}
Testrun
Summary
Results
Duration
{% for item in data.records %}

{{ item.name }}

{{ item.stage }}

{{ item.figures.records }}
TESTS
{% if item.figures.successful > 0 %}
{{ item.figures.successful }}
PASSED
{% endif %} {% if item.figures.error > 0 %}
{{ item.figures.error }}
FAILED
{% endif %} {% if item.figures.paused > 0 %}
{{ item.figures.paused }}
PAUSED
{% endif %}
{% endfor %}
{% endblock %}