[Answered ]-What is the correct way to construct a Django ModelForm in a create/edit view?

2👍

Here you should pass both request.POST and instance to form init:

# [B] Postback from form
elif request.POST: 
    form = forms.MyForm(request.POST, instance=instance)
👤ndpu

Leave a comment