From e8a2cbdb90183912e09cc594f792c3518cac5b61 Mon Sep 17 00:00:00 2001 From: Raz Date: Sat, 21 Dec 2024 11:09:54 +0100 Subject: [PATCH 1/2] fix regression --- tournaments/models/tournament.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index e3e93fb..eebfd86 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -936,6 +936,7 @@ class TeamSummon: class TeamItem: def __init__(self, team_registration): self.names = team_registration.team_names() + self.date = team_registration.local_call_date() self.registration_date = team_registration.registration_date self.weight = team_registration.weight self.initial_weight = team_registration.initial_weight() From 92ccdf707e317a5eff69ac12afc535f75d06c5de Mon Sep 17 00:00:00 2001 From: Raz Date: Sat, 21 Dec 2024 11:11:07 +0100 Subject: [PATCH 2/2] fix regression --- tournaments/models/tournament.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 1735b94..c2c1c9f 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -954,6 +954,7 @@ class TeamItem: def to_dict(self): return { "names": self.names, + "date": self.date, "registration_date": self.registration_date, "weight": self.weight, "initial_weight": self.initial_weight,