{% extends "squad/base.html" %} {% load squad %} {% load static %} {% block content %} {% include "squad/_pagination.html" with items=history %}

Test results history

{% for environment in history.environments %} {% endfor %} {% for build, results in history.results.items %} {% for environment in history.environments %} {% with result=results|get_value:environment%} {% with known_issues=result.known_issues %} {% endwith %} {% endwith %} {% endfor %} {% endfor %}
Build Date{{environment}}
{{build.version}} {{build.datetime}} {% if result %} {{result.status}} {% else %} n/a {% endif %} {% if known_issues %} {% endif %}
{% include "squad/_pagination.html" with items=history %} {% endblock %} {% block javascript %} {% endblock %}