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

42 lines
1.3 KiB
HTML
Raw Normal View History

2022-09-11 12:55:53 +00:00
{% from "macros.jinja.html" import information %}
2022-04-12 11:25:17 +00:00
{% extends "admin/master.html" %}
{% block body %}
2022-09-11 14:29:26 +00:00
{{ information(current_user, active_semester_str, role="admin")}}
2022-04-12 11:25:17 +00:00
2022-04-11 23:52:01 +00:00
<hr>
2022-04-12 11:25:17 +00:00
2022-09-24 17:29:56 +00:00
<h2>Assistant's marks analysis</h2>
<p>
The histograms on this page (except the last two histograms) show the oral and protocol marks of each active assistant <em>individually</em>.
</p>
<p>
The last two histograms show the oral and protocol marks of all active assistants <em>together</em>.
</p>
2022-04-12 11:25:17 +00:00
<p>
2022-09-24 17:29:56 +00:00
An active assistant is an assistant with an active user. The marks are from all semesters, not only from the active semester.
2022-04-12 11:25:17 +00:00
</p>
2022-09-24 17:29:56 +00:00
<h4>Export</h4>
<p>
You can export this analysis by printing this page to a PDF file. The shortcut for printing the page is normally <code>Ctrl + p</code>. Select "Save as (PDF) file" afterwards instead of a printer!
</p>
<br>
2022-04-12 11:25:17 +00:00
<hr>
2022-09-24 17:29:56 +00:00
{% for hist_ind in hist_indices %}
<div class="row text-center">
<div class="col-sm">
<img class="img-fluid" src="data:image/png;base64,{{ oral_mark_hists[hist_ind]}}">
</div>
<div class="col-sm">
<img class="img-fluid" src="data:image/png;base64,{{ protocol_mark_hists[hist_ind]}}">
</div>
</div>
2022-04-12 11:25:17 +00:00
<hr>
{% endfor %}
{% endblock body %}