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

33 lines
1 KiB
HTML
Raw Normal View History

2022-10-09 01:00:51 +00:00
{% extends "admin_base.jinja.html" %}
2022-04-12 13:02:05 +00:00
2022-10-09 01:00:51 +00:00
{% block content %}
2022-09-24 17:29:56 +00:00
<h2>Final part marks analysis</h2>
2022-04-12 13:02:05 +00:00
2022-09-24 17:29:56 +00:00
<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>
2022-10-09 01:00:51 +00:00
{% endblock %}