wip: programme

This commit is contained in:
mco-system
2023-04-09 22:13:29 +11:00
parent a1a9ce97ac
commit 170458b014
6 changed files with 98 additions and 34 deletions

View File

@@ -2,7 +2,13 @@
{% block content %}
<div id="schedule">
{% for slot in slots %}
{% include "slot.html" %}
{% if filter %}
{% if slot.submission_type.en | lower in filter %}
{% include "slot.html" %}
{% endif %}
{% else %}
{% include "slot.html" %}
{% endif %}
{% endfor %}
</div>
{% endblock %}