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

37 lines
1.2 KiB
HTML
Raw Normal View History

2022-10-09 01:00:51 +00:00
{% extends "admin_base.jinja.html" %}
2022-04-12 11:25:17 +00:00
2022-10-09 01:00:51 +00:00
{% block content %}
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">
2022-10-29 22:11:29 +00:00
<img class="img-fluid" src="data:image/png;base64,{{ oral_mark_hists[hist_ind] }}">
2022-09-24 17:29:56 +00:00
</div>
<div class="col-sm">
2022-10-29 22:11:29 +00:00
<img class="img-fluid" src="data:image/png;base64,{{ protocol_mark_hists[hist_ind] }}">
2022-09-24 17:29:56 +00:00
</div>
</div>
2022-04-12 11:25:17 +00:00
<hr>
{% endfor %}
2022-10-09 01:00:51 +00:00
{% endblock %}