1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-21 03:58:26 +02:00

Pool number is not day number

This commit is contained in:
2021-04-29 15:47:46 +02:00
parent afde1d35d5
commit e21c3bb413
2 changed files with 3 additions and 3 deletions

View File

@ -386,7 +386,7 @@ class Pool(models.Model):
return reverse_lazy("participation:pool_detail", args=(self.pk,))
def __str__(self):
return _("Pool {round} for tournament {tournament} with teams {teams}")\
return _("Pool of day {round} for tournament {tournament} with teams {teams}")\
.format(round=self.round,
tournament=str(self.tournament),
teams=", ".join(participation.team.trigram for participation in self.participations.all()))