summaryrefslogtreecommitdiffstats
path: root/hyperkitty/views/pages.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-02-14 09:52:35 +0100
committerAurélien Bompard <aurelien@bompard.org>2013-02-14 09:52:35 +0100
commita5a7c229d1cd45d51a09133f2355f4d26618c4fa (patch)
tree45695c6d886f18f185d7c46c795c88a422b3e262 /hyperkitty/views/pages.py
parent09129caa85025658ce47f49c38886c7ba0a46517 (diff)
downloadhyperkitty-a5a7c229d1cd45d51a09133f2355f4d26618c4fa.tar.gz
hyperkitty-a5a7c229d1cd45d51a09133f2355f4d26618c4fa.tar.xz
hyperkitty-a5a7c229d1cd45d51a09133f2355f4d26618c4fa.zip
Minor fix in the navigation bar
Diffstat (limited to 'hyperkitty/views/pages.py')
-rw-r--r--hyperkitty/views/pages.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/hyperkitty/views/pages.py b/hyperkitty/views/pages.py
index bad7166..92a41c7 100644
--- a/hyperkitty/views/pages.py
+++ b/hyperkitty/views/pages.py
@@ -27,8 +27,6 @@ from forms import SearchForm
def index(request):
- search_form = SearchForm(auto_id=False)
-
base_url = settings.MAILMAN_API_URL % {
'username': settings.MAILMAN_USER, 'password': settings.MAILMAN_PASS}
@@ -36,7 +34,7 @@ def index(request):
lists = store.get_lists()
context = {
- 'lists': lists,
- 'search_form': search_form,
+ 'all_lists': lists,
+ 'search_form': SearchForm(auto_id=False),
}
return render(request, "index.html", context)