mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
16 lines
375 B
HTML
16 lines
375 B
HTML
{% from "macros.jinja.html" import information %}
|
|
{% extends "admin/index.html" %}
|
|
|
|
{% block body %}
|
|
{{ information(current_user, active_semester_str, role="assistant") }}
|
|
|
|
<hr>
|
|
|
|
<p>
|
|
Number of <strong>missing</strong> final experiment marks: {{ number_of_missing_final_experiment_marks }}
|
|
</p>
|
|
|
|
{{ super() }}
|
|
|
|
{{ footer|safe }}
|
|
{% endblock %}
|