diff --git a/tournaments/views.py b/tournaments/views.py index 1108108..e2081c4 100644 --- a/tournaments/views.py +++ b/tournaments/views.py @@ -295,9 +295,9 @@ def tournament(request, tournament_id): .prefetch_related( 'rounds', 'rounds__children', - 'rounds__matches__team_scores__team_registration__player_registrations__player', - 'group_stages__matches__team_scores__team_registration__player_registrations__player', - 'rounds__children__matches__team_scores__team_registration__player_registrations__player' + 'rounds__matches__team_scores__team_registration__player_registrations', + 'group_stages__matches__team_scores__team_registration__player_registrations', + 'rounds__children__matches__team_scores__team_registration__player_registrations' ), pk=tournament_id )