From: Marek Stępniowski Date: Sat, 13 Sep 2008 06:31:39 +0000 (+0200) Subject: Changed help text for search box again. X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/b2628bba9380a64174073fcd58c9d6f451a8b35b?hp=a2321e24672009ae873d5fa76ded3bece9ff3456 Changed help text for search box again. --- diff --git a/apps/catalogue/forms.py b/apps/catalogue/forms.py index 2d23b790c..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ł, autor, motyw, gatunek, …' + 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))