{% extends "chrono/manager_resource_detail.html" %} {% load i18n %} {% block breadcrumb %} {{ block.super }} {{ day|date:"SHORT_DATE_FORMAT" }} {% endblock %} {% block appbar-title %}

{{ 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 %}

{% endblock %} {% block appbar-extras %} {% trans 'Month view' %} {% endblock %} {% block content %} {% for period, resource_info in view.get_timetable_infos %} {% if forloop.first %} {% endif %} {% if forloop.last %}
{{ period|date:"TIME_FORMAT" }} {% for booking in resource_info.bookings %}
{{ booking.event.start_datetime|date:"TIME_FORMAT" }} {{ booking.meetings_display }}
{% endfor %}
{% endif %} {% empty %}

{% trans "No bookings this day." %}

{% endfor %} {% endblock %}