From 93fe98d006c406526b733207f24d8bbc057c84fa Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 28 Aug 2013 10:45:52 +0200 Subject: [PATCH] feed_plugin: do not fix the feed queryset --- compte_agglo_montpellier/apps/feed_plugin/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compte_agglo_montpellier/apps/feed_plugin/forms.py b/compte_agglo_montpellier/apps/feed_plugin/forms.py index f16c576..834e9a0 100644 --- a/compte_agglo_montpellier/apps/feed_plugin/forms.py +++ b/compte_agglo_montpellier/apps/feed_plugin/forms.py @@ -5,5 +5,5 @@ from . import models from . import widgets class FeedForm(forms.Form): - feeds = forms.ModelMultipleChoiceField(queryset=models.Feed.objects.all(), + feeds = forms.ModelMultipleChoiceField(queryset=models.Feed.objects.all, label=_('Your feeds'), widget=widgets.CheckboxMultipleSelect)