From 421bf9d5b3087afb185d776a53bc90f973955df3 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Thu, 6 Jun 2013 16:53:53 +0200 Subject: Add search --- hyperkitty/views/forms.py | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'hyperkitty/views/forms.py') diff --git a/hyperkitty/views/forms.py b/hyperkitty/views/forms.py index 6f6c294..938deba 100644 --- a/hyperkitty/views/forms.py +++ b/hyperkitty/views/forms.py @@ -98,24 +98,6 @@ class AddTagForm(forms.Form): -class SearchForm(forms.Form): - target = forms.CharField(label='', help_text=None, - widget=forms.Select( - choices=(('Subject', 'Subject'), - ('Content', 'Content'), - ('SubjectContent', 'Subject & Content'), - ('From', 'From')) - ) - ) - - keyword = forms.CharField(max_length=100,label='', help_text=None, - widget=forms.TextInput( - attrs={'placeholder': 'Search this list.'} - ) - ) - - - class ReplyForm(forms.Form): newthread = forms.BooleanField(label="", required=False) subject = forms.CharField(label="", required=False, -- cgit