{% 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 %}
{% for day in week_days.days %} | {% if not day.other_month %}{{ day.date|date:"l d" }}{% endif %} | {% endfor %}
---|---|
{{ hour|date:"TIME_FORMAT" }} | {% 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 %}
{% trans "No opening hours this month." %}