15 lines
387 B
HTML
15 lines
387 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div id="schedule">
|
|
{% 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 %}
|