[Answer]-Django modelform saving resets object data

1👍

It has to work that way. An empty html form input is not sent in the POST data, so the backend doesn’t know the difference between you explicitly sending an empty string to overwrite the current data, it just leaving it blank.

Leave a comment