thsf.net/src/thsf/templates/planning.html

9 lines
167 B
HTML
Raw Normal View History

2023-04-05 16:14:50 +02:00
{% extends "base.html" %}
{% block content %}
2023-04-09 08:29:44 +02:00
<div id="schedule">
2023-04-08 21:17:34 +02:00
{% for slot in slots %}
2023-04-09 08:29:44 +02:00
{% include "slot.html" %}
2023-04-08 21:17:34 +02:00
{% endfor %}
</div>
2023-04-09 02:42:18 +02:00
{% endblock %}