thsf.net/build/lib/thsf/templates/planning.html

9 lines
187 B
HTML
Raw Normal View History

2023-04-08 21:17:34 +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 04:38:07 +02:00
{% endblock %}