[Answer]-Django multiple choices with yes no options

1👍

There is no standard widget to display the ManyToManyField in a way you would like. You will need to write a custom widget to do this.

Base widget documentation will be useful:
https://docs.djangoproject.com/en/dev/ref/forms/widgets/

A tutorial on how to write a custom widget: http://tothinkornottothink.com/post/10815277049/django-forms-i-custom-fields-and-widgets-in-detail

Leave a comment