{% extends 'room_calendar_app/navs/calendar-nav.html' %} {% load django_bootstrap5 i18n %} {% block title %}{% translate 'Week View' %}{% endblock title %} {% block content %}
{% partialdef calendar-view-partial inline %} {% include 'room_calendar_app/navs/cal-caption.html' with inner_url="room_calendar_app:week_view" %} {% for day in calendar.week_days %} {% endfor %} {% for slot,data in calendar.week_dict.items %} {% for weekday,occurrence in data.items %} {% if occurrence.in_display %} {% else %} {% endif %} {% endfor %} {% endfor %}
#{{ day|date:'d-m-y' }}
{{ slot|time:"H:i" }}{% if occurrence.start_time == slot %} {{ occurrence.display }} {% else %} *** {% endif %}
{% endpartialdef %}
{% endblock content %}