{% extends 'room_calendar_app/navs/calendar-nav.html' %} {% load django_bootstrap5 i18n%} {% block title %}{% translate 'Week View Clients' %}{% endblock title %} {% block content %}
{% partialdef calendar-table-partial inline %} {% include 'room_calendar_app/navs/cal-caption.html' with inner_url="room_calendar_app:week_client_defaults_view" %} {% for n,day in calendar.week_days %} {% endfor %} {% for slot,data in calendar.times_dict.items %} {% for weekday,occurrence in data.items %} {% if occurrence|length > 0 %} {% else %} {% endif %} {% endfor %} {% endfor %}
#{{ day }}
{{ slot|time:"H:i" }} {% for time in occurrence %} {{ time.client_code }},  {% endfor %}
{% endpartialdef %}
{% endblock content %}