beta (#4)
Co-authored-by: mco-system <michael.costa@mcos.nc> Reviewed-on: #4
This commit was merged in pull request #4.
This commit is contained in:
15
src/thsf/templates/planning.html
Normal file
15
src/thsf/templates/planning.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user