Skip to content

Commit e5cab3f

Browse files
committed
Temporarily remove filtering form from homepage to compare performance
1 parent efc339c commit e5cab3f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

pgcommitfest/commitfest/views.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ def home(request):
5454
else:
5555
cf = None
5656

57-
# Generates a fairly expensive query, which we shouldn't do unless
58-
# the user is logged in. XXX: Figure out how to avoid doing that..
59-
form = CommitFestFilterForm(None, request.GET)
60-
6157
if request.user.is_authenticated:
6258
patch_list = patchlist(request, cf, personalized=True)
6359
else:
@@ -70,7 +66,6 @@ def home(request):
7066
request,
7167
"home.html",
7268
{
73-
"form": form,
7469
"title": None,
7570
"patches": patch_list.patches,
7671
"statussummary": "",

0 commit comments

Comments
 (0)