Fix erreur si changement jours travaillés
This commit is contained in:
parent
b306584356
commit
dfcb630db7
@ -715,7 +715,10 @@ def _gen_form_saisie_groupe(
|
|||||||
jn = sco_abs.day_names()
|
jn = sco_abs.day_names()
|
||||||
for d in odates:
|
for d in odates:
|
||||||
idx_jour = d.weekday()
|
idx_jour = d.weekday()
|
||||||
noms_jours.append(jn[idx_jour])
|
if 0 <= idx_jour < len(jn):
|
||||||
|
noms_jours.append(jn[idx_jour])
|
||||||
|
else:
|
||||||
|
noms_jours.append("???") # jour non travaillé
|
||||||
for jour in noms_jours:
|
for jour in noms_jours:
|
||||||
H.append(
|
H.append(
|
||||||
f"""<th colspan="2" width="100px" style="padding-left: 5px; padding-right: 5px;">
|
f"""<th colspan="2" width="100px" style="padding-left: 5px; padding-right: 5px;">
|
||||||
|
Loading…
Reference in New Issue
Block a user