{% extends 'base.html' %} {% load custom_tags_and_filters %} {% block title %}{{ item }} calendar{% endblock %} {% block content %}
{{ item }}
{{ current_day|date:"l" }}
{{ current_day|date:"F jS" }}
{% for event in events %} {% if event|class_name == "Reservation" %} {% include 'mobile/individual_reservation.html' with reservation=event %} {% elif event|class_name == "ScheduledOutage" %} {% include 'mobile/individual_outage.html' with outage=event %} {% elif event|class_name == "TrainingEvent" %} {% include 'mobile/individual_training_event.html' with training=event %} {% endif %} {% empty %}
There are no reservations
{% endfor %} {# #} {# #} {# #} {# #} {# #} {# #} {# #} {% endblock %}