diff --git a/tournaments/views.py b/tournaments/views.py index e54e3ea..d01db7c 100644 --- a/tournaments/views.py +++ b/tournaments/views.py @@ -160,7 +160,7 @@ def index_new(request): thirty_days_future = now + timedelta(days=30) club_id = request.GET.get('club') - tournaments = tournaments_query_new(Q(end_date__isnull=True, start_date__gte=thirty_days_ago, start_date__lte=thirty_days_future), club_id, True, None) + tournaments = tournaments_query_new(Q(end_date__isnull=True, start_date__gte=thirty_days_ago, start_date__lte=thirty_days_future), club_id, True, 50) display_tournament = [t for t in tournaments if t.display_tournament()] live = [] future = []