X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0cae17bec6d31806615fae59a5b3945016285fbe..c82303f184e8d139817ca963c81a63e4c442f9b9:/apps/catalogue/forms.py diff --git a/apps/catalogue/forms.py b/apps/catalogue/forms.py index 279ec7193..72aa08533 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ł utworu, kategoria lub motyw literacki' self.fields['tags'].initial = '/'.join(tag.slug for tag in Tag.get_tag_list(tags)) @@ -39,6 +39,10 @@ class ObjectSetsForm(forms.Form): class NewSetForm(forms.Form): name = forms.CharField(max_length=50, required=True) + + def __init__(self, *args, **kwargs): + super(NewSetForm, self).__init__(*args, **kwargs) + self.fields['name'].widget.attrs['title'] = u'nazwa półki' def save(self, user, commit=True): name = self.cleaned_data['name']