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

9 lines
187 B
HTML
Raw Normal View History

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