2023-04-09 06:17:34 +11:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
2023-04-09 17:29:44 +11:00
|
|
|
<div id="schedule">
|
2023-04-09 06:17:34 +11:00
|
|
|
{% for slot in slots %}
|
2023-04-09 17:29:44 +11:00
|
|
|
{% include "slot.html" %}
|
2023-04-09 06:17:34 +11:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2023-04-09 13:38:07 +11:00
|
|
|
{% endblock %}
|