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

15 lines
387 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 %}
2023-04-09 13:13:29 +02:00
{% if filter %}
{% if slot.submission_type.en | lower in filter %}
{% include "slot.html" %}
{% endif %}
{% else %}
{% include "slot.html" %}
{% endif %}
2023-04-09 09:40:48 +02:00
{% endfor %}
</div>
2023-04-09 04:38:07 +02:00
{% endblock %}