{% extends 'schedule_base.html' %} {% load static %} {% block title %} Schedule | {{ block.super }} {% endblock %} {% block schedule_content %} {% for timeslot in timeslots %} {% for eventinstance in eventinstances %} {% if eventinstance.when.lower.time == timeslot.time %} {% endif %} {% endfor %} {% endfor %}
{% if timeslot.time.minute == 0 %}{{ timeslot.time }}{% endif %} {{ eventinstance.event.title }}
{{ eventinstance.when.lower.time }}-{{ eventinstance.when.upper.time }}
{% include "event_modal.html" %} {% endblock %}