forked from ScoDoc/ScoDoc
code cosmetic
This commit is contained in:
parent
ce4115eeef
commit
47d728376c
@ -377,11 +377,18 @@ def formsemestre_get_etud_groupnames(formsemestre_id, attr="group_name"):
|
|||||||
{ etudid : { partition_id : group_name }} (attr=group_name or group_id)
|
{ etudid : { partition_id : group_name }} (attr=group_name or group_id)
|
||||||
"""
|
"""
|
||||||
infos = ndb.SimpleDictFetch(
|
infos = ndb.SimpleDictFetch(
|
||||||
"""SELECT i.etudid AS etudid, p.id AS partition_id,
|
"""SELECT
|
||||||
gd.group_name, gd.id AS group_id
|
i.etudid AS etudid,
|
||||||
FROM notes_formsemestre_inscription i, partition p,
|
p.id AS partition_id,
|
||||||
group_descr gd, group_membership gm
|
gd.group_name,
|
||||||
WHERE i.formsemestre_id=%(formsemestre_id)s
|
gd.id AS group_id
|
||||||
|
FROM
|
||||||
|
notes_formsemestre_inscription i,
|
||||||
|
partition p,
|
||||||
|
group_descr gd,
|
||||||
|
group_membership gm
|
||||||
|
WHERE
|
||||||
|
i.formsemestre_id=%(formsemestre_id)s
|
||||||
and i.formsemestre_id = p.formsemestre_id
|
and i.formsemestre_id = p.formsemestre_id
|
||||||
and p.id = gd.partition_id
|
and p.id = gd.partition_id
|
||||||
and gm.etudid = i.etudid
|
and gm.etudid = i.etudid
|
||||||
|
Loading…
Reference in New Issue
Block a user