forked from ScoDoc/ScoDoc
black + lien saisie note
This commit is contained in:
parent
711ca9c220
commit
44d2ffb240
@ -654,15 +654,9 @@ def evaluation_describe(evaluation_id="", edit_in_place=True):
|
||||
# date et absences (pas pour evals de malus)
|
||||
if E["jour"]:
|
||||
jour = E["jour"]
|
||||
H.append(
|
||||
"<p>Réalisée le <b>%s</b> "
|
||||
% (jour)
|
||||
)
|
||||
H.append("<p>Réalisée le <b>%s</b> " % (jour))
|
||||
if E["heure_debut"] != E["heure_fin"]:
|
||||
H.append(
|
||||
"de %s à %s "
|
||||
% (E["heure_debut"], E["heure_fin"])
|
||||
)
|
||||
H.append("de %s à %s " % (E["heure_debut"], E["heure_fin"]))
|
||||
group_id = sco_groups.get_default_group(formsemestre_id)
|
||||
H.append(
|
||||
f"""<span class="noprint"><a href="{url_for(
|
||||
@ -675,10 +669,7 @@ def evaluation_describe(evaluation_id="", edit_in_place=True):
|
||||
)
|
||||
else:
|
||||
jour = "<em>pas de date</em>"
|
||||
H.append(
|
||||
"<p>Réalisée le <b>%s</b> "
|
||||
% (jour)
|
||||
)
|
||||
H.append("<p>Réalisée le <b>%s</b> " % (jour))
|
||||
|
||||
H.append(
|
||||
'</p><p>Coefficient dans le module: <b>%s</b>, notes sur <span id="eval_note_max">%g</span> '
|
||||
@ -687,8 +678,15 @@ def evaluation_describe(evaluation_id="", edit_in_place=True):
|
||||
H.append('<span id="eval_note_min" class="sco-hidden">0.</span>')
|
||||
if can_edit:
|
||||
H.append(
|
||||
'<a href="evaluation_edit?evaluation_id=%s">(modifier l\'évaluation)</a>'
|
||||
% evaluation_id
|
||||
f"""
|
||||
<a class="stdlink" href="{url_for(
|
||||
"notes.evaluation_edit", scodoc_dept=g.scodoc_dept, evaluation_id=evaluation_id)
|
||||
}">modifier l'évaluation</a>
|
||||
|
||||
<a class="stdlink" href="{url_for(
|
||||
"notes.saisie_notes", scodoc_dept=g.scodoc_dept, evaluation_id=evaluation_id)
|
||||
}">saisie des notes</a>
|
||||
"""
|
||||
)
|
||||
H.append("</p>")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user