We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cdfd4e commit 80eae00Copy full SHA for 80eae00
pgcommitfest/commitfest/views.py
@@ -56,7 +56,7 @@ def home(request):
56
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
- CommitFestFilterForm(None, request.GET)
+ form = CommitFestFilterForm(None, request.GET)
60
61
if request.user.is_authenticated:
62
patch_list = patchlist(request, cf, personalized=True)
@@ -70,7 +70,7 @@ def home(request):
70
request,
71
"home.html",
72
{
73
- # "form": form,
+ "form": form,
74
"title": None,
75
"patches": patch_list.patches,
76
"statussummary": "",
0 commit comments