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