[Answer]-Form not saving to database "through" intermediate tables

1👍

I think Problem is with getting option from POST, use-

request.POST.getlist('relevantoption')

in stead of

request.POST.getlist('options')

apart, why to use form here for single multiple choice field, even where you are modifying choices also and not using form.save too.

👤Roshan

Leave a comment