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/final_part_marks.jinja.html
2022-09-24 19:29:56 +02:00

37 lines
1.2 KiB
HTML

{% from "macros.jinja.html" import information %}
{% extends "admin/master.html" %}
{% block body %}
{{ information(current_user, active_semester_str, role="admin")}}
<hr>
<h2>Final part marks analysis</h2>
<p>
The histograms on this page show the final experiment marks of each part in the active semester.
</p>
<p>
The plot at the end of the page shows the course of the mean value of the final experiment marks in all parts of each semester over all semesters.
</p>
<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>
<hr>
<div class="text-center">
{% for active_semester_final_part_marks_hist in active_semester_final_part_marks_hists %}
<img class="img-fluid" src="data:image/png;base64,{{ active_semester_final_part_marks_hist }}">
<hr>
{% endfor %}
<img class="img-fluid" src="data:image/png;base64,{{ mean_final_part_mark_plot }}">
</div>
<br>
{% endblock body %}