forked from ScoDoc/ScoDoc
BUT: autorise plusieurs UE vers le même niveau du tronc commun
This commit is contained in:
parent
b9d6688250
commit
c103111aa1
@ -98,14 +98,10 @@ def get_ue_niveaux_options_html(ue: UniteEns) -> str:
|
|||||||
if niveaux_by_parcours["TC"]: # TC pour Tronc Commun
|
if niveaux_by_parcours["TC"]: # TC pour Tronc Commun
|
||||||
options.append("""<optgroup label="Tronc commun">""")
|
options.append("""<optgroup label="Tronc commun">""")
|
||||||
for n in niveaux_by_parcours["TC"]:
|
for n in niveaux_by_parcours["TC"]:
|
||||||
if n.id in niveaux_autres_ues:
|
|
||||||
disabled = "disabled"
|
|
||||||
else:
|
|
||||||
disabled = ""
|
|
||||||
options.append(
|
options.append(
|
||||||
f"""<option value="{n.id}" {
|
f"""<option value="{n.id}" {
|
||||||
'selected' if ue.niveau_competence == n else ''}
|
'selected' if ue.niveau_competence == n else ''}
|
||||||
{disabled}>{n.annee} {n.competence.titre_long}
|
>{n.annee} {n.competence.titre_long}
|
||||||
niveau {n.ordre}</option>"""
|
niveau {n.ordre}</option>"""
|
||||||
)
|
)
|
||||||
options.append("""</optgroup>""")
|
options.append("""</optgroup>""")
|
||||||
|
Loading…
Reference in New Issue
Block a user