mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
Improve assistant marks analysis page
This commit is contained in:
parent
b33046dbc3
commit
d6180f4ccb
2 changed files with 22 additions and 5 deletions
|
@ -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.
|
NOTE: Obviously, the email address is fake.
|
||||||
|
|
||||||
== To-Do
|
== ToDo
|
||||||
|
|
||||||
* Deactivate assistants account after a while if not assigned to experiments
|
* Deactivate assistants account after a while if not assigned to experiments
|
||||||
* Statistics + semester review with alerts
|
* Statistics + semester review with alerts
|
||||||
|
|
|
@ -1,5 +1,22 @@
|
||||||
{% for histInd in histIndices %}
|
{% from "macros.html" import information %}
|
||||||
<img src="data:image/png;base64,{{oralMarkHists[histInd]}}"\>
|
{% extends "admin/master.html" %}
|
||||||
<img src="data:image/png;base64,{{protocolMarkHists[histInd]}}"\>
|
|
||||||
|
{% block body %}
|
||||||
|
{{information(current_user, userActiveSemester, role="admin")}}
|
||||||
|
|
||||||
<hr>
|
<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 %}
|
||||||
|
|
Loading…
Reference in a new issue