Skip to content

Commit 6cdfd4e

Browse files
committed
Don't have filter form temporarily but still do the queries
1 parent 4d066e8 commit 6cdfd4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pgcommitfest/commitfest/views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def home(request):
5656

5757
# Generates a fairly expensive query, which we shouldn't do unless
5858
# the user is logged in. XXX: Figure out how to avoid doing that..
59-
form = CommitFestFilterForm(None, request.GET)
59+
CommitFestFilterForm(None, request.GET)
6060

6161
if request.user.is_authenticated:
6262
patch_list = patchlist(request, cf, personalized=True)
@@ -70,7 +70,7 @@ def home(request):
7070
request,
7171
"home.html",
7272
{
73-
"form": form,
73+
# "form": form,
7474
"title": None,
7575
"patches": patch_list.patches,
7676
"statussummary": "",

0 commit comments

Comments
 (0)