mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
11 lines
207 B
HTML
11 lines
207 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
|
|
{% for table in tables %}
|
|
<h2>{{tablesLabels[loop.index0]}}</h2>
|
|
{{table|safe}}
|
|
{% else %}
|
|
No parts in this semster yet!
|
|
{% endfor %}
|
|
|
|
{% endblock content %}
|