{% extends "base.html" %} {% block 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 %}
{% endblock %}