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

42 lines
1.2 KiB
HTML

{% from "macros.jinja.html" import information %}
{% extends "admin/index.html" %}
{% block body %}
{{ information(current_user, active_semester_str, role="admin") }}
<hr>
<div class="d-inline-flex">
<div class="table">
<table class="table table-bordered">
<thead class="thead-dark">
<tr>
<th scope="col">
Assistant
</th>
<th scope="col">
Missing experiment marks
</th>
</tr>
</thead>
<tbody>
{% for assistant_num_missing in assistants_num_missing %}
<tr>
<td>
{{ assistant_num_missing[0] }}
</td>
<td>
{{ assistant_num_missing[1] }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{{ super() }}
{{ footer|safe }}
{% endblock %}