{% extends 'room_calendar_app/navs/calendar-nav.html' %} {% load django_bootstrap5 i18n %} {% block title %}{% translate 'Blocks View' %}{% endblock title %} {% block content %}
{% partialdef calendar-table-partial inline %} {% include 'room_calendar_app/navs/cal-caption.html' with inner_url="room_calendar_app:week_blocks_view" %} {% for n,day in calendar.week_days %} {% endfor %} {% for slot,data in calendar.block_dict.items %} {% for weekday,occurrence in data.items %} {% if occurrence.pk %} {% else %} {% endif %} {% endfor %} {% endfor %}
#{{ day }}
{{ slot|time:"H:i" }}{% if user == occurrence.tenant.user %} {{ occurrence.tenant }} {% else %} {{ occurrence.tenant.display_name }} {% endif %} - {{ occurrence.start_time }}- {{ occurrence.end_time }} {% endif %}
{% endpartialdef %}
{% endblock content %}