From d6180f4ccb629f9dbb907074001cbe6cbd9ba591 Mon Sep 17 00:00:00 2001 From: Mo8it Date: Tue, 12 Apr 2022 13:25:17 +0200 Subject: [PATCH] Improve assistant marks analysis page --- README.adoc | 2 +- .../templates/analysis/assistant_marks.html | 25 ++++++++++++++++--- 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/README.adoc b/README.adoc index 69b8642..36dd2fb 100644 --- a/README.adoc +++ b/README.adoc @@ -76,7 +76,7 @@ This URL leads to the home page where you can login with this testing admin acco NOTE: Obviously, the email address is fake. -== To-Do +== ToDo * Deactivate assistants account after a while if not assigned to experiments * Statistics + semester review with alerts diff --git a/advlabdb/templates/analysis/assistant_marks.html b/advlabdb/templates/analysis/assistant_marks.html index b32d475..0d3cbfc 100644 --- a/advlabdb/templates/analysis/assistant_marks.html +++ b/advlabdb/templates/analysis/assistant_marks.html @@ -1,5 +1,22 @@ -{% for histInd in histIndices %} - - +{% from "macros.html" import information %} +{% extends "admin/master.html" %} + +{% block body %} + {{information(current_user, userActiveSemester, role="admin")}} +
-{% endfor %} + +

+ This page shows an analysis of all marks of all assistants with an active user. +
+ The marks are from all semesters, not only the active semester. +

+ +
+ + {% for histInd in histIndices %} + + +
+ {% endfor %} +{% endblock body %}