{% extends "base.html" %} {% block content %} {% for day in days %} {% endfor %} {% for service in services %} {% for h in service.history %} {% endfor %} {% endfor %}
Service {% now "D jS" %} {{ day|date:"D jS" }}
{{ service.name }} {# FIXME we should not join url in this ugly way #} {% if service.has_issues %} Had Issues {% endif %} {{ service.status.name }} {% if h.information %} {{ h.name }} {% else %} {{ h.name }} {% endif %}
{% include "_legend.html" %} {% endblock %}