Django Multiple Choice Field / Checkbox Select Multiple

前端 未结 6 1162
清酒与你
清酒与你 2020-11-29 18:09

I have a Django application and want to display multiple choice checkboxes in a user\'s profile. They will then be able to select multiple items.

This is a simplifi

6条回答
  •  温柔的废话
    2020-11-29 19:08

    ManyToManyField isn`t a good choice.You can use some snippets to implement MultipleChoiceField.You can be inspired by MultiSelectField with comma separated values (Field + FormField) But it has some bug in it.And you can install django-multiselectfield.This is more prefect.

提交回复
热议问题