X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/04cb9d727764da3c0d3ba30783ba25dc828e3899..21f878e8112cf1f9b732a6dbb77e70efa68a01aa:/apps/catalogue/forms.py?ds=inline

diff --git a/apps/catalogue/forms.py b/apps/catalogue/forms.py
index 688e5edd0..63a552675 100644
--- a/apps/catalogue/forms.py
+++ b/apps/catalogue/forms.py
@@ -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))
 
 
@@ -32,7 +32,7 @@ class ObjectSetsForm(forms.Form):
         self.fields['set_ids'] = forms.MultipleChoiceField(
             label=u'Półki',
             required=False,
-            choices=[(tag.id, tag.name) for tag in Tag.objects.filter(category='set', user=user)],
+            choices=[(tag.id, "%s (%s)" % (tag.name, tag.book_count)) for tag in Tag.objects.filter(category='set', user=user)],
             initial=[tag.id for tag in obj.tags.filter(category='set', user=user)],
             widget=forms.CheckboxSelectMultiple
         )