Skip to content

Commit 80eae00

Browse files
committed
Revert "Don't have filter form temporarily but still do the queries"
This reverts commit 6cdfd4e.
1 parent 6cdfd4e commit 80eae00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pgcommitfest/commitfest/views.py

+2-2
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-
CommitFestFilterForm(None, request.GET)
59+
form = 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)