[Fixed]-Django generic View for dealing with two forms occur errors

1👍

This is an UpdateView, so Django is expecting the main form to be a ModelForm which it will use to display the values from the model instance. You might be able to fix the issue by swapping your main and second form classes.

Leave a comment