X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/c1fbd6ea3930ca7f96604fdb721e2f642827536b..eca626e3b4df287dc762a765cf22ba98504162f9:/apps/catalogue/forms.py

diff --git a/apps/catalogue/forms.py b/apps/catalogue/forms.py
index 68363c6e7..63a552675 100644
--- a/apps/catalogue/forms.py
+++ b/apps/catalogue/forms.py
@@ -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
         )