X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/8559c95597de98e8f6c580e97224ed3ecc9dc5c0..1b8be88041fe83a2137d0eccafa65302a97b8d29:/catalogue/forms.py?ds=sidebyside diff --git a/catalogue/forms.py b/catalogue/forms.py index b383f99ea..5708d897b 100644 --- a/catalogue/forms.py +++ b/catalogue/forms.py @@ -14,6 +14,14 @@ class SearchForm(forms.Form): self.fields['q'].widget.attrs['title'] = u'tytuł utworu, motyw lub kategoria' +class UserSetsForm(forms.Form): + def __init__(self, book, user, *args, **kwargs): + super(UserSetsForm, self).__init__(*args, **kwargs) + self.fields['set_ids'] = forms.ChoiceField( + choices=[(tag.id, tag.name) for tag in Tag.objects.filter(category='set', user=user)], + ) + + class BookSetsForm(forms.Form): def __init__(self, book, user, *args, **kwargs): super(BookSetsForm, self).__init__(*args, **kwargs)