From 8ceecd85c8a9ea12a3b0da31342b9138d1fdc2ed Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Fri, 8 May 2020 19:01:27 +0200 Subject: [PATCH] Syntheses for different rounds are distinct --- apps/member/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/member/models.py b/apps/member/models.py index 14b32a8..aa2f1a9 100644 --- a/apps/member/models.py +++ b/apps/member/models.py @@ -298,7 +298,8 @@ class Synthesis(Document): def __str__(self): 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):