fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Search - some tests, change in SearchResults cleaning.
[wolnelektury.git]
/
apps
/
catalogue
/
forms.py
diff --git
a/apps/catalogue/forms.py
b/apps/catalogue/forms.py
index
9707e79
..
b7bf249
100644
(file)
--- a/
apps/catalogue/forms.py
+++ b/
apps/catalogue/forms.py
@@
-7,7
+7,7
@@
from django.utils.translation import ugettext_lazy as _
from slughifi import slughifi
from catalogue.models import Tag, Book
from slughifi import slughifi
from catalogue.models import Tag, Book
-from catalogue.fields import JQueryAutoCompleteField
+from catalogue.fields import JQueryAutoComplete
Search
Field
from catalogue import utils
from catalogue import utils
@@
-31,15
+31,20
@@
class BookImportForm(forms.Form):
class SearchForm(forms.Form):
class SearchForm(forms.Form):
- q = JQueryAutoComplete
Field('/katalog/tags/',
{'minChars': 2, 'selectFirst': True, 'cacheLength': 50, 'matchContains': "word"})
+ q = JQueryAutoComplete
SearchField('/newsearch/hint/') #
{'minChars': 2, 'selectFirst': True, 'cacheLength': 50, 'matchContains': "word"})
tags = forms.CharField(widget=forms.HiddenInput, required=False)
tags = forms.CharField(widget=forms.HiddenInput, required=False)
+ book = forms.IntegerField(widget=forms.HiddenInput, min_value=0, required=False)
+
def __init__(self, *args, **kwargs):
tags = kwargs.pop('tags', [])
def __init__(self, *args, **kwargs):
tags = kwargs.pop('tags', [])
+ book = kwargs.pop('book', None)
super(SearchForm, self).__init__(*args, **kwargs)
super(SearchForm, self).__init__(*args, **kwargs)
- self.fields['q'].widget.attrs['title'] = _('title, author, theme/topic, epoch, kind, genre')
+ self.fields['q'].widget.attrs['title'] = _('title, author, theme/topic, epoch, kind, genre
, phrase
')
#self.fields['q'].widget.attrs['style'] = ''
self.fields['tags'].initial = '/'.join(tag.url_chunk for tag in Tag.get_tag_list(tags))
#self.fields['q'].widget.attrs['style'] = ''
self.fields['tags'].initial = '/'.join(tag.url_chunk for tag in Tag.get_tag_list(tags))
+ if book is not None:
+ self.fields['book'].initial = book.id
class UserSetsForm(forms.Form):
class UserSetsForm(forms.Form):