{% extends "base.html" %} {% load i18n %} {% load pagination_tags %} {% block page-title %} {% if date == today %} {% trans "Today" %} {% else %} {{ date }} {% endif %} {% endblock %} {% block sub-navigation %}
{% csrf_token %}
{% endblock %} {% block content %} {% autopaginate bookings 20 %}
{% csrf_token %}

{% trans "Bookings" %}

{% include "booking_heading.html" %} {% for booking in bookings %} {% include "booking_row.html" %} {% empty %} {% endfor %} {% if bookings %} {% endif %}
{% trans "No entries found" %}
{% trans "Sum" %}: {{ day.get_booking_sum|format_minutes_to_time }}
{% endblock %}