[Answer]-Saving to two models via intermediate form – Django

1👍

Since coding_form is not an instance of ModelForm and hence coding_form.save() will not work and will not return a model instance. You can access form data by using coding_form.cleaned_data dictionary.

Leave a comment