1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00
AdvLabDB/advlabdb/templates/students.html

13 lines
236 B
HTML
Raw Normal View History

{% set title = "Students" %}
{% extends "layout.html" %}
{% block content %}
{% for table in tables %}
2021-03-19 15:30:02 +00:00
<h2>{{tablesLabels[loop.index0]}}</h2>
2021-03-19 17:09:07 +00:00
{{table|safe}}
{% else %}
No parts in this semster yet!
{% endfor %}
{% endblock content %}