How can you edit an existing object in a database from a form? I use this for example:
obj_ex = Model(column = value, column2 = value2)
obj_ex.save()
However this doesn't update my object in the database. I have tried to access the pk of the entry and save the values of the entry with the pk of x but I still can't update the table.
Is there a way to use an .update() type to update objects? Or is there another way to update a table?
Thank you.