This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
compte-agglo-montpellier/compte_agglo_montpellier/apps/feed_plugin/forms.py

10 lines
302 B
Python

from django import forms
from django.utils.translation import ugettext as _
from . import models
from . import widgets
class FeedForm(forms.Form):
feeds = forms.ModelMultipleChoiceField(queryset=models.Feed.objects.all(),
label=_('Your feeds'), widget=widgets.CheckboxMultipleSelect)