mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
22 lines
479 B
HTML
22 lines
479 B
HTML
{% 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 %}
|