summaryrefslogtreecommitdiffstats
path: root/hyperkitty/views/thread.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-06-06 16:53:53 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-06-06 16:53:53 +0200
commit421bf9d5b3087afb185d776a53bc90f973955df3 (patch)
tree9bf12eeb9e1c658b52c7656e7f32c1769b0ba234 /hyperkitty/views/thread.py
parent44a3da0ede4a028da4896c6e5f1ff136ac380f76 (diff)
downloadhyperkitty-421bf9d5b3087afb185d776a53bc90f973955df3.tar.gz
hyperkitty-421bf9d5b3087afb185d776a53bc90f973955df3.tar.xz
hyperkitty-421bf9d5b3087afb185d776a53bc90f973955df3.zip
Add search
Diffstat (limited to 'hyperkitty/views/thread.py')
-rw-r--r--hyperkitty/views/thread.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/hyperkitty/views/thread.py b/hyperkitty/views/thread.py
index 1e44714..fd52831 100644
--- a/hyperkitty/views/thread.py
+++ b/hyperkitty/views/thread.py
@@ -34,7 +34,7 @@ from django.utils.timezone import utc
import robot_detection
from hyperkitty.models import Tag, Favorite, LastView
-from forms import SearchForm, AddTagForm, ReplyForm
+from forms import AddTagForm, ReplyForm
from hyperkitty.lib import get_months, get_store, stripped_subject
from hyperkitty.lib.voting import set_message_votes
@@ -72,7 +72,6 @@ def _get_thread_replies(request, thread, offset=1, limit=None):
def thread_index(request, mlist_fqdn, threadid, month=None, year=None):
''' Displays all the email for a given thread identifier '''
- search_form = SearchForm(auto_id=False)
store = get_store(request)
thread = store.get_thread(mlist_fqdn, threadid)
if not thread:
@@ -140,7 +139,6 @@ def thread_index(request, mlist_fqdn, threadid, month=None, year=None):
'threadid': threadid,
'subject': subject,
'tags': tags,
- 'search_form': search_form,
'addtag_form': tag_form,
'month': thread.date_active,
'first_mail': thread.starting_email,