From 6be947706e1be70d02879aadae91247250a6cf41 Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Sun, 2 Nov 2025 19:21:20 +0100 Subject: [PATCH] Increase tournament listing limit from 50 to 100 --- tournaments/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tournaments/views.py b/tournaments/views.py index c3d2f38..3186926 100644 --- a/tournaments/views.py +++ b/tournaments/views.py @@ -78,7 +78,7 @@ def index(request): if club_id: tournaments = tournaments_query(Q(end_date__isnull=True), club_id, True, 50) else: - tournaments = tournaments_query(Q(end_date__isnull=True, start_date__gte=thirty_days_ago, start_date__lte=thirty_days_future), club_id, True, 50) + tournaments = tournaments_query(Q(end_date__isnull=True, start_date__gte=thirty_days_ago, start_date__lte=thirty_days_future), club_id, True, 100) display_tournament = [t for t in tournaments if t.display_tournament()] live = []