thsf.net/src/thsf/templates/planning.html
doug713705 ee43e98385 beta (#4)
Co-authored-by: mco-system <michael.costa@mcos.nc>
Reviewed-on: #4
2023-04-20 15:09:57 +02:00

16 lines
433 B
HTML

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