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

23 lines
479 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block content %}
{% for table in tables %}
{{tablesLabels[loop.index0]}}
<div class="table-responsive">
<table
class="table table-striped"
data-toggle="table"
data-search="true"
data-show-toggle="true"
data-show-columns="true"
data-show-export="true"
data-export-types="['json', 'xml', 'csv', 'txt', 'sql', 'pdf']">
{{table|safe}}
</table>
</div>
{% else %}
No parts in this semster yet!
{% endfor %}
{% endblock content %}