I can't import multiselectfield

70 Views Asked by At

I'm trying to use multiselectfield in Django although I installed it with pip install django-multiselectfield and put it in my INSTALLED_APPS but I can't import it in my forms.py file... what can i do?

1

There are 1 best solutions below

2
On

multiselectfield should be added on models.py. After creating the MultiSelectField on your model, you can loop it in your form ( See django-multiselectfield Docs)

Alternatively, CheckboxSelectMultiple might help: https://stackoverflow.com/a/15393771/12958385