{% extends "chrono/manager_agenda_view.html" %} {% load i18n %} {% block bodyargs %}class="monthview"{% endblock %} {% block breadcrumb %} {{ block.super }} {{ view.date|date:"F Y" }} {% endblock %} {% block appbar %}

{{ view.date|date:"F Y" }} {% with selected_month=view.date|date:"n" selected_year=view.date|date:"Y" %} {% endwith %}

{% if user_can_manage %} {% trans 'Settings' %} {% endif %} {% trans 'Print' %} {% trans 'Day view' %} {% endblock %} {% block content %} {% for week_days in view.get_timetable_infos %} {% if forloop.first %} {% endif %} {% for day in week_days.days %} {% endfor %} {% for hour in week_days.periods %} {% for day in week_days.days %} {% if forloop.parentloop.first %} {% for slot in day.infos.opening_hours %}
{% endfor %} {% for slot in day.infos.booked_slots %}
{{slot.booking.event.start_datetime|date:"TIME_FORMAT"}} {% if slot.booking.label or slot.booking.user_name %} {{slot.booking.label}}{% if slot.booking.label and slot.booking.user_name %} - {% endif %} {{slot.booking.user_name}} {% else %}{% trans "booked" %}{% endif %} {{ slot.desk }}
{% endfor %} {% endif %} {% endfor %}
{% endfor %} {% if forloop.last %}
{% if not day.other_month %}{{ day.date|date:"l d" }}{% endif %}
{{ hour|date:"TIME_FORMAT" }}
{% endif %} {% empty %}

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

{% endfor %} {% endblock %}