{% extends 'schedule_base.html' %} {% block schedule_content %} {% if eventinstances %} {% for day in camp.camp_days %} {{ day.lower.date|date:"D d/m" }}
{% for eventinstance in eventinstances %} {% if eventinstance.schedule_date == day.lower.date %} {{ eventinstance.when.lower|date:"H:i" }} - {{ eventinstance.when.upper|date:"H:i" }} &#x{{ eventinstance.location.icon }};
{{ eventinstance.event.title }}
{% endif %} {% endfor %}

{% endfor %} {% else %}

No scheduled events for {{ camp.title }} yet!

{% endif %} {% endblock schedule_content %}