{% 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 %} {% if history.known_issues %} {% for environment in history.environments %} {% endfor %} {% endif %} {% for build, results in history.results.items %} {% for environment in history.environments %} {% with result=results|get_value:environment%} {% with known_issue=history.known_issues|get_value:environment %} {% endwith %} {% endwith %} {% endfor %} {% endfor %}
Build Date{{environment}}
Known Issues {% for issue in history.known_issues|get_value:environment %} {% if issue.url %} {{issue.title}} {% else %} {{issue.title}} {% endif %} {% if issue.intermittent %} (intermittent) {% endif %}
{% endfor %}
{{build.version}} {{build.datetime}} {% if result %} {{result.status}} {% else %} n/a {% endif %}
{% include "squad/_pagination.html" with items=history %} {% endblock %} {% block javascript %} {% endblock %}