1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-12-25 16:22:22 +00:00

Syntheses for different rounds are distinct

This commit is contained in:
Yohann D'ANELLO 2020-05-08 19:01:27 +02:00
parent 90b1169f32
commit 8ceecd85c8

View File

@ -298,7 +298,8 @@ class Synthesis(Document):
def __str__(self): def __str__(self):
return _("Synthesis of team {trigram} that is {source} for the round {round} of tournament {tournament}")\ return _("Synthesis of team {trigram} that is {source} for the round {round} of tournament {tournament}")\
.format(trigram=self.team.trigram, source=self.get_source_display().lower(), tournament=self.tournament) .format(trigram=self.team.trigram, source=self.get_source_display().lower(), round=self.round,
tournament=self.tournament)
class Config(models.Model): class Config(models.Model):