mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
42 lines
1.2 KiB
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 %}
|