forked from ScoDoc/ScoDoc
Liste enseignants dans table description semestre (DS, Le Havre)
This commit is contained in:
parent
2f94c41821
commit
fcbbc877bc
@ -644,6 +644,12 @@ def formsemestre_description_table(
|
|||||||
ModInscrits = context.do_moduleimpl_inscription_list(
|
ModInscrits = context.do_moduleimpl_inscription_list(
|
||||||
moduleimpl_id=M["moduleimpl_id"]
|
moduleimpl_id=M["moduleimpl_id"]
|
||||||
)
|
)
|
||||||
|
enseignants = ", ".join(
|
||||||
|
[
|
||||||
|
context.Users.user_info(m["ens_id"], REQUEST)["nomprenom"]
|
||||||
|
for m in M["ens"]
|
||||||
|
]
|
||||||
|
)
|
||||||
l = {
|
l = {
|
||||||
"UE": M["ue"]["acronyme"],
|
"UE": M["ue"]["acronyme"],
|
||||||
"Code": M["module"]["code"],
|
"Code": M["module"]["code"],
|
||||||
@ -652,6 +658,8 @@ def formsemestre_description_table(
|
|||||||
"Inscrits": len(ModInscrits),
|
"Inscrits": len(ModInscrits),
|
||||||
"Responsable": context.Users.user_info(M["responsable_id"])["nomprenom"],
|
"Responsable": context.Users.user_info(M["responsable_id"])["nomprenom"],
|
||||||
"_Responsable_class": "scotext",
|
"_Responsable_class": "scotext",
|
||||||
|
"Enseignants": enseignants,
|
||||||
|
"_Enseignants_class": "scotext",
|
||||||
"Coef.": M["module"]["coefficient"],
|
"Coef.": M["module"]["coefficient"],
|
||||||
# 'ECTS' : M['module']['ects'],
|
# 'ECTS' : M['module']['ects'],
|
||||||
# Lien sur titre -> module
|
# Lien sur titre -> module
|
||||||
@ -689,7 +697,7 @@ def formsemestre_description_table(
|
|||||||
columns_ids = ["UE", "Code", "Module", "Coef."]
|
columns_ids = ["UE", "Code", "Module", "Coef."]
|
||||||
if context.get_preference("bul_show_ects", formsemestre_id):
|
if context.get_preference("bul_show_ects", formsemestre_id):
|
||||||
columns_ids += ["ects"]
|
columns_ids += ["ects"]
|
||||||
columns_ids += ["Inscrits", "Responsable"]
|
columns_ids += ["Inscrits", "Responsable", "Enseignants"]
|
||||||
if with_evals:
|
if with_evals:
|
||||||
columns_ids += [
|
columns_ids += [
|
||||||
"jour",
|
"jour",
|
||||||
|
Loading…
Reference in New Issue
Block a user