DEV Community

Nathanlewis99
Nathanlewis99

Posted on

CheckBoxSelectMultiple values not saving to Django database

I have a django form with a CheckBoxSelectMultiple field, linked to the 'opening_days' field in my BookingManagement model. This renders in my template, and the form submits after checking some of the checkbox options, for example:

Selecting some of the options available from the queryset for the opening_days field

However, when I check the model instance in the database, the 'opening_days' field is…

Top comments (0)