I have created a ModelForm class to be able to create and edit database entries. Creating new entries works well, however, i dont know how to use ModelForms to edit/update a
Also possible and slightly shorter:
instance = MyModel.objects.get(whatever) form = MyModelForm(request.POST or None, instance=instance) ...