Update opolka/ScoDoc from ScoDoc/ScoDoc #2

Merged
opolka merged 1272 commits from ScoDoc/ScoDoc:master into master 2024-05-27 09:11:04 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 5eba6170a5 - Show all commits

View File

@ -575,7 +575,7 @@ def formation_list_table(detail: bool) -> GenTable:
# utilise pour voir si la formation couvre tous les semestres # utilise pour voir si la formation couvre tous les semestres
row["semestres_ues"] = ", ".join( row["semestres_ues"] = ", ".join(
"S" + str(x if (x is not None and x > 0) else "-") "S" + str(x if (x is not None and x > 0) else "-")
for x in sorted({ue.semestre_idx for ue in formation.ues}) for x in sorted({(ue.semestre_idx or 0) for ue in formation.ues})
) )
# Date surtout utilisées pour le tri: # Date surtout utilisées pour le tri:
if row["formsemestres"]: if row["formsemestres"]:

View File

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