From a5a7c229d1cd45d51a09133f2355f4d26618c4fa Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Thu, 14 Feb 2013 09:52:35 +0100 Subject: Minor fix in the navigation bar --- hyperkitty/views/pages.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'hyperkitty/views/pages.py') 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) -- cgit