{% extends "base.html" %} {% load i18n %} {% block page-title %}{% trans "Overview" %}{% endblock %} {% block navigation %} {% activetab "main" "time" %} {{ block.super }} {% endblock %} {% block sub-navigation %} {% endblock %} {% block actions %}
{% csrf_token %}
{% endblock %} {% block content %}

{% trans "Search results" %}

{% include "overview_booking_heading.html" %} {% for booking in bookings %} {% include "overview_booking_row.html" %} {% empty %} {% endfor %} {% if bookings %} {% endif %}
{% trans "No entries found" %}
{% trans "Sum" %}: {{ sum|format_minutes_to_time }}
{% endblock %}