mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
15 lines
454 B
HTML
15 lines
454 B
HTML
{% from "macros.html" import information %}
|
|
{% extends "admin/master.html" %}
|
|
|
|
{% block body %}
|
|
{{information(current_user, userActiveSemester, role="admin")}}
|
|
|
|
<hr>
|
|
|
|
{% for activeSemesterFinalPartMarksHist in activeSemesterFinalPartMarksHists %}
|
|
<img src="data:image/png;base64,{{activeSemesterFinalPartMarksHist}}">
|
|
<hr>
|
|
{% endfor %}
|
|
|
|
<img src="data:image/png;base64,{{meanFinalPartMarksPlot}}">
|
|
{% endblock body %}
|