{% extends "chrono/manager_agenda_month_view.html" %} {% load i18n %} {% block actions %} {{ block.super }} {% trans 'Day view' %} {% endblock %} {% block content %} {% for week_days in view.get_timetable_infos %} {% if forloop.first %}
{% for day in week_days.days %} | {% if not day.other_month %}{{ day.date|date:"l j" }}{% 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.exceptions %}
{% endfor %}
{% for slot in day.infos.booked_slots %}
{{slot.booking.event.start_datetime|date:"TIME_FORMAT"}}
{{ slot.booking.get_user_block }}
{% trans "Cancel" %}
{% if not single_desk %}{{ slot.desk }}{% endif %}
{% if slot.booking.color %}{{ slot.booking.color }}{% endif %}
{% endfor %}
{% endif %}
|
{% endfor %}
{% trans "No opening hours this month." %}