{% extends 'schedule_base.html' %} {% load staticfiles %} {% block schedule_content %}
{% if timeslot.time.minute == 0 %}{{ timeslot.time }}{% endif %} | {% for eventinstance in eventinstances %} {% if eventinstance.when.lower.time == timeslot.time %}
{{ eventinstance.event.title }} {{ eventinstance.when.lower.time }}-{{ eventinstance.when.upper.time }} |
{% endif %}
{% endfor %}