{% extends "base.html" %} {% block body %} {% for date, builds in by_date %}

{{date.day}}
{{date.strftime('%b')}}
{{date.year}}

{% for build in builds %} {{build.project.key}}: {{build.timestamp.strftime('%Hh%M')}}
{% for run in build.runs if run.test_id%} {{run.repository.key}}:{{run.test.key}} {% endfor %}
{% endfor %}
{% endfor %}
{% if by_date|length > 0 %} Previous {% endif %} {% if page > 0 %} Next {% endif %}
{% endblock %}