1
0
Fork 0

Fix: affichage moyenne évalution / 20

This commit is contained in:
Emmanuel Viennet 2023-06-09 19:39:39 +02:00
parent c6f3ad448a
commit c547990eef
2 changed files with 3 additions and 2 deletions

View File

@ -57,6 +57,7 @@ from app.scodoc import sco_moduleimpl
from app.scodoc import sco_permissions_check
from app.tables import list_etuds
# menu evaluation dans moduleimpl
def moduleimpl_evaluation_menu(evaluation_id, nbnotes=0) -> str:
"Menu avec actions sur une evaluation"
@ -732,7 +733,7 @@ def _ligne_evaluation(
)
if etat["moy"]:
H.append(
f"""<b>{etat["moy"]} / {evaluation.note_max:g}</b>
f"""<b>{etat["moy"]} / 20</b>
&nbsp; (<a class="stdlink" href="{
url_for('notes.evaluation_listenotes',
scodoc_dept=g.scodoc_dept, evaluation_id=evaluation.id)

View File

@ -1,7 +1,7 @@
# -*- mode: python -*-
# -*- coding: utf-8 -*-
SCOVERSION = "9.4.82"
SCOVERSION = "9.4.83"
SCONAME = "ScoDoc"