2021-03-18 22:20:59 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
2021-03-19 12:41:52 +00:00
|
|
|
|
|
|
|
{% for table in tables %}
|
2021-03-19 15:30:02 +00:00
|
|
|
<h2>{{tablesLabels[loop.index0]}}</h2>
|
|
|
|
<table
|
|
|
|
data-classes="table table-bordered table-striped"
|
|
|
|
data-toggle="table"
|
|
|
|
data-thead-classes="table-dark"
|
|
|
|
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>
|
|
|
|
<br>
|
|
|
|
<hr>
|
|
|
|
<br>
|
2021-03-19 12:41:52 +00:00
|
|
|
{% else %}
|
|
|
|
No parts in this semster yet!
|
|
|
|
{% endfor %}
|
|
|
|
|
2021-03-18 22:20:59 +00:00
|
|
|
{% endblock content %}
|