[Answered ]-Django-registration 0.8 error: register() takes at least 2 arguments (2 given)

2👍

You haven’t passed the correct two parameters. The register view requires two args: request and backend. Everything else (all the kwargs) are optional. Django automatically passes request and you passed in the success_url kwarg, so that’s 2, but you’re missing backend.

Leave a comment