2022-09-13 00:20:39 +02:00
|
|
|
{% from "macros.jinja.html" import information %}
|
2021-05-17 21:48:12 +02:00
|
|
|
{% extends "admin/index.html" %}
|
|
|
|
|
|
|
|
{% block body %}
|
2022-06-01 22:53:23 +02:00
|
|
|
{{ information(current_user, active_semester_str, role="admin") }}
|
2022-02-24 01:28:09 +01:00
|
|
|
|
2022-03-19 22:21:45 +01:00
|
|
|
<hr>
|
2022-02-24 00:08:14 +01:00
|
|
|
|
2022-09-13 00:20:39 +02:00
|
|
|
<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>
|
2022-02-24 00:08:14 +01:00
|
|
|
|
2022-03-19 22:21:45 +01:00
|
|
|
{{ super() }}
|
2022-05-30 16:43:29 +02:00
|
|
|
|
|
|
|
{{ footer|safe }}
|
2022-05-17 00:42:49 +02:00
|
|
|
{% endblock %}
|