diff options
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, |