X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4a6b5644b971d067f20fc05866b837dc30264f07..9c31d87a67dca4861c1e609001a6807eba9b6967:/catalogue/forms.py 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)