{{monthname}} {{year}}
S
M
T
W
T
F
S
{% for row in rows %}
{% for day in row %}
{% endfor %}
{% endfor %}
{{ day.date }}
-
{% if reservations %}
{% for x in reservations %}
-
{{x.title}} {% if x.start_date|date:"Y-m-d" == x.finish_date|date:"Y-m-d" %} {{ x.start_date|date:"d b" }} {% else %} {{ x.start_date|date:"d b" }} - {{ x.finish_date|date:"d b" }} {% endif %}{% if request.user.is_authenticated %} {% if x.status|striptags != 'Approved' %} {% csrf_token %} {{x.status}} {% endif %} {% else %} {% if x.status|striptags != 'Approved' %} {{x.status}} {% endif %} {% endif %} {{x.clock_start|date:"H:i"}} - {{x.clock_end|date:"H:i"}}
{% endfor %}
{% else %}
Belum ada reservasi acara bulan ini.
{% endif %}