forked from ScoDoc/ScoDoc
correction typo et affichage en mode DEBUG
This commit is contained in:
parent
409ad75096
commit
0fe80696d5
@ -102,7 +102,7 @@ def comp_latex_parcourstimeline(etudiant, promo, taille=17):
|
|||||||
result: chaine unicode (EV:)
|
result: chaine unicode (EV:)
|
||||||
"""
|
"""
|
||||||
codelatexDebut = (
|
codelatexDebut = (
|
||||||
""""
|
"""
|
||||||
\\begin{parcourstimeline}{**debut**}{**fin**}{**nbreSemestres**}{%d}
|
\\begin{parcourstimeline}{**debut**}{**fin**}{**nbreSemestres**}{%d}
|
||||||
"""
|
"""
|
||||||
% taille
|
% taille
|
||||||
|
@ -626,7 +626,7 @@ class JuryPE(object):
|
|||||||
" - %d étudiants classés " % (nbinscrit)
|
" - %d étudiants classés " % (nbinscrit)
|
||||||
+ ": "
|
+ ": "
|
||||||
+ ",".join(
|
+ ",".join(
|
||||||
[etudid for etudid in self.semTagDict[fid].get_etudids()]
|
[str(etudid) for etudid in self.semTagDict[fid].get_etudids()]
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if lesEtudidsManquants:
|
if lesEtudidsManquants:
|
||||||
@ -634,7 +634,7 @@ class JuryPE(object):
|
|||||||
" - dont %d étudiants manquants ajoutés aux données du jury"
|
" - dont %d étudiants manquants ajoutés aux données du jury"
|
||||||
% (len(lesEtudidsManquants))
|
% (len(lesEtudidsManquants))
|
||||||
+ ": "
|
+ ": "
|
||||||
+ ", ".join(lesEtudidsManquants)
|
+ ", ".join(str(etudid) for etudid in lesEtudidsManquants)
|
||||||
)
|
)
|
||||||
pe_tools.pe_print(" - Export csv")
|
pe_tools.pe_print(" - Export csv")
|
||||||
filename = self.NOM_EXPORT_ZIP + self.semTagDict[fid].nom + ".csv"
|
filename = self.NOM_EXPORT_ZIP + self.semTagDict[fid].nom + ".csv"
|
||||||
@ -913,7 +913,7 @@ class JuryPE(object):
|
|||||||
# pe_tools.pe_print(etudid, donnees)
|
# pe_tools.pe_print(etudid, donnees)
|
||||||
# les infos générales
|
# les infos générales
|
||||||
descr = [
|
descr = [
|
||||||
etudid,
|
str(etudid),
|
||||||
donnees["nom"],
|
donnees["nom"],
|
||||||
str(donnees["abandon"]),
|
str(donnees["abandon"]),
|
||||||
str(donnees["diplome"]),
|
str(donnees["diplome"]),
|
||||||
@ -931,7 +931,7 @@ class JuryPE(object):
|
|||||||
table,
|
table,
|
||||||
]
|
]
|
||||||
|
|
||||||
chaine += delim.join(descr) + "\n"
|
chaine += delim.join(str(i) for i in descr) + "\n"
|
||||||
return chaine
|
return chaine
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -266,7 +266,7 @@ class TableTag(object):
|
|||||||
for etudid in self.identdict:
|
for etudid in self.identdict:
|
||||||
descr = delim.join(
|
descr = delim.join(
|
||||||
[
|
[
|
||||||
etudid,
|
str(etudid),
|
||||||
self.identdict[etudid]["nom"],
|
self.identdict[etudid]["nom"],
|
||||||
self.identdict[etudid]["prenom"],
|
self.identdict[etudid]["prenom"],
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user