diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-06-06 16:53:53 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-06-06 16:53:53 +0200 |
commit | 421bf9d5b3087afb185d776a53bc90f973955df3 (patch) | |
tree | 9bf12eeb9e1c658b52c7656e7f32c1769b0ba234 /hyperkitty/views/forms.py | |
parent | 44a3da0ede4a028da4896c6e5f1ff136ac380f76 (diff) | |
download | hyperkitty-421bf9d5b3087afb185d776a53bc90f973955df3.tar.gz hyperkitty-421bf9d5b3087afb185d776a53bc90f973955df3.tar.xz hyperkitty-421bf9d5b3087afb185d776a53bc90f973955df3.zip |
Add search
Diffstat (limited to 'hyperkitty/views/forms.py')
-rw-r--r-- | hyperkitty/views/forms.py | 18 |
1 files changed, 0 insertions, 18 deletions
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, |