From 92ccdf707e317a5eff69ac12afc535f75d06c5de Mon Sep 17 00:00:00 2001 From: Raz Date: Sat, 21 Dec 2024 11:11:07 +0100 Subject: [PATCH] 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,