{% extends "base.html" %} {% load url from future %} {% load i18n %} {% block title %}{% trans "Daily View" %}{% endblock %} {% block document %}

{% trans "Daily View" %}

{{ day|date:"DATE_FORMAT" }}

{% for tm,cells in timeslots %} {% for cell in cells %} {{ cell }} {% endfor %} {% endfor %}
{% trans "Time" %} {% trans "Main Room" %} {% trans "Private 2" %} {% trans "Private 3" %} {% trans "Private 4" %}
{{ tm|date:"H:i" }}
{% endblock %}