Added caching to book_text view.
[wolnelektury.git] / apps / catalogue / forms.py
index 688e5ed..68363c6 100644 (file)
@@ -14,7 +14,7 @@ class SearchForm(forms.Form):
     def __init__(self, *args, **kwargs):
         tags = kwargs.pop('tags', [])
         super(SearchForm, self).__init__(*args, **kwargs)
-        self.fields['q'].widget.attrs['title'] = u'tytuł, autor, motyw, epoka, rodzaj, gatunek literacki'
+        self.fields['q'].widget.attrs['title'] = u'tytuł, autor, motyw/temat, epoka, rodzaj, gatunek'
         self.fields['tags'].initial = '/'.join(tag.slug for tag in Tag.get_tag_list(tags))