mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-12-24 17:42:23 +00:00
Allow to parse empty mentions
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
parent
35e3be8af3
commit
13c815c62c
@ -676,7 +676,7 @@ class Tournament(models.Model):
|
|||||||
notes[participation] = note
|
notes[participation] = note
|
||||||
sorted_notes = sorted(notes.items(), key=lambda x: x[1], reverse=True)
|
sorted_notes = sorted(notes.items(), key=lambda x: x[1], reverse=True)
|
||||||
for i, (participation, _note) in enumerate(sorted_notes):
|
for i, (participation, _note) in enumerate(sorted_notes):
|
||||||
mention = mentions[i][3]
|
mention = mentions[i][3] if len(mentions[i]) >= 4 else ""
|
||||||
if not self.final:
|
if not self.final:
|
||||||
participation.mention = mention
|
participation.mention = mention
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user