diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 90c5244..c2c1c9f 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -938,6 +938,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() @@ -953,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,