[Fixed]-Django doesn't show ValidationError

1👍

Your problem is in get_context_data, where you pass the form class, rather than the object instantiated with the post data.

However you should not be overriding that method at all. Even if you fixed this issue, it would only be duplicating what the method already does. Remove the method altogether.

Leave a comment