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

Improve assistant marks analysis page

This commit is contained in:
Mo 2022-04-12 13:25:17 +02:00
parent b33046dbc3
commit d6180f4ccb
2 changed files with 22 additions and 5 deletions

View file

@ -76,7 +76,7 @@ This URL leads to the home page where you can login with this testing admin acco
NOTE: Obviously, the email address is fake.
== To-Do
== ToDo
* Deactivate assistants account after a while if not assigned to experiments
* Statistics + semester review with alerts

View file

@ -1,5 +1,22 @@
{% for histInd in histIndices %}
<img src="data:image/png;base64,{{oralMarkHists[histInd]}}"\>
<img src="data:image/png;base64,{{protocolMarkHists[histInd]}}"\>
{% from "macros.html" import information %}
{% extends "admin/master.html" %}
{% block body %}
{{information(current_user, userActiveSemester, role="admin")}}
<hr>
{% endfor %}
<p>
This page shows an analysis of all marks of all assistants with an active user.
<br>
The marks are from all semesters, not only the active semester.
</p>
<hr>
{% for histInd in histIndices %}
<img src="data:image/png;base64,{{oralMarkHists[histInd]}}">
<img src="data:image/png;base64,{{protocolMarkHists[histInd]}}">
<hr>
{% endfor %}
{% endblock body %}