handle having no group presidents (#33438)

This commit is contained in:
Frédéric Péters 2019-05-27 14:26:29 +02:00
parent d07ee2e4d9
commit 4ddb26f6de
1 changed files with 8 additions and 7 deletions

View File

@ -1518,13 +1518,14 @@ class SyncFromPcfDbView(BrowserView):
nom, prenom, description = row
presgroups.append((description, nom, prenom))
presgroup = presgroups[0]
table = conf_pres_table
table += u'<tr><td>Présidents de groupe</td><td><ul>'
if len(presgroups) > 1:
for presgroup in presgroups[:-1]:
table += u'<li>%s</li>' % get_link(presgroup[1], presgroup[2])
table += u'<li>%s</li></ul></td></tr>' % get_link(presgroups[-1][1], presgroups[-1][2])
if presgroups:
presgroup = presgroups[0]
table = conf_pres_table
table += u'<tr><td>Présidents de groupe</td><td><ul>'
if len(presgroups) > 1:
for presgroup in presgroups[:-1]:
table += u'<li>%s</li>' % get_link(presgroup[1], presgroup[2])
table += u'<li>%s</li></ul></td></tr>' % get_link(presgroups[-1][1], presgroups[-1][2])
table += u'<tr><td>Greffier (Secrétaire général)</td><td>%s</td></tr>' % self.settings.greffier_name