{% extends "chrono/manager_agenda_view.html" %} {% load i18n %} {% block bodyargs %}class="dayview"{% endblock %} {% block breadcrumb %} {{ block.super }} {{ day|date:"SHORT_DATE_FORMAT" }} {% endblock %} {% block appbar %}

{{ view.date|date:"l j F Y" }}

{% if user_can_manage %} {% trans 'Settings' %} {% endif %} {% trans 'Print' %} {% endblock %} {% block content %} {% for period, desk_bookings in view.get_timeperiods %} {% if forloop.first %} {% for desk in view.agenda.desk_set.all %} {% endfor %} {% endif %} {% for booking in desk_bookings %} {% endfor %} {% if forloop.last %}
{{ desk.label }}
{{ period|date:"TIME_FORMAT" }} {% if booking %} {% endif %}
{% endif %} {% empty %}

{% trans "No opening hours this day." %}

{% endfor %} {% endblock %}