X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/25881fff0322a55a8c0869557e966afb9c02beb9..4defd5d35b69d1ad01ca05b2a1e174abc2fcebfb:/apps/catalogue/forms.py?ds=sidebyside

diff --git a/apps/catalogue/forms.py b/apps/catalogue/forms.py
index 523b1d636..6506deb45 100644
--- a/apps/catalogue/forms.py
+++ b/apps/catalogue/forms.py
@@ -13,7 +13,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ł utworu, kategoria lub motyw literacki'
+        self.fields['q'].widget.attrs['title'] = u'tytuł, autor, motyw, epoka, rodzaj, gatunek literacki'
         self.fields['tags'].initial = '/'.join(tag.slug for tag in Tag.get_tag_list(tags))