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

15 lines
389 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="content">
{% for slot in slots %}
{% if filter %}
{% if slot.submission_type.en | lower in filter %}
{% include "slot.html" %}
{% endif %}
{% else %}
{% include "slot.html" %}
{% endif %}
{% endfor %}
</div>
{% endblock %}