{% 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" }} {% with selected_day=view.date|date:"j" selected_month=view.date|date:"n" selected_year=view.date|date:"Y" %} {% endwith %}

{% if user_can_manage %} {% trans 'Settings' %} {% endif %} {% trans 'Print' %} {% endblock %} {% block content %} {% for period, desk_infos in view.get_timetable_infos %} {% if forloop.first %} {% for desk_info in desk_infos %} {% endfor %} {% endif %} {% for desk_info in desk_infos %} {% endfor %} {% if forloop.last %}
{{ desk_info.desk.label }}
{{ period|date:"TIME_FORMAT" }} {% if forloop.parentloop.first %} {# opening hours on the first row #} {% for slot in desk_info.opening_hours %}
{{slot.begin}} {{slot.end}}
{% endfor %} {% endif %} {% for booking in desk_info.bookings %} {% endfor %}
{% endif %} {% empty %}

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

{% endfor %} {% endblock %}