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.
Source:stackexchange.com