minor fix

This commit is contained in:
Emmanuel Viennet 2022-10-31 23:06:56 +01:00
parent 04e5de8a80
commit 8b97695f53
3 changed files with 4 additions and 4 deletions

View File

@ -307,8 +307,8 @@ def ue_edit(ue_id=None, create=False, formation_id=None, default_semestre_idx=No
("ue_id", {"input_type": "hidden"}),
("create", {"input_type": "hidden", "default": create}),
("formation_id", {"input_type": "hidden", "default": formation_id}),
("titre", {"size": 30, "explanation": "nom de l'UE"}),
("acronyme", {"size": 8, "explanation": "abbréviation", "allow_null": False}),
("titre", {"size": 48, "explanation": "nom de l'UE"}),
("acronyme", {"size": 12, "explanation": "abbréviation", "allow_null": False}),
(
"numero",
{

View File

@ -131,7 +131,7 @@ def table_modules_ue_coefs(formation_id, semestre_idx=None, parcours_id: int = N
and (ue.parcour_id is not None)
and ue.parcour_id not in (p.id for p in mod.parcours)
):
cell_style += style + " champs_coef_hors_parcours"
cell_style = style + " champs_coef_hors_parcours"
else:
cell_style = style
cells.append(

View File

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