X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/108c9cc4636b04f4ba3f0edd67c26acbdca36984..04474c1980a751d4b6ca205e47b82e6471028e7f:/apps/catalogue/forms.py diff --git a/apps/catalogue/forms.py b/apps/catalogue/forms.py index e20adbadc..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, motyw lub kategoria' + 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))