{% extends "base.html" %} {% load i18n %} {% block page-title %}{% trans "Week" %}{% endblock %} {% block sub-navigation %} {% endblock %} {% block content %}
{% for day in days %} {% endfor %} {% for bookings in day_data %} {% endfor %} {% for sum in sum_data %} {% endfor %}
{{ day|date:"D" }} {{ day|date:"SHORT_DATE_FORMAT" }}
{% if bookings %} {% for booking in bookings %} {% endfor %}
{{ booking.duration|format_minutes_to_time }}
{{ booking.get_title|truncatewords:2 }}
{% endif %}
{{ sum|format_minutes_to_time }}
{% endblock %}