Alex Gonzalez
Alex Gonzalez

Reputation: 991

What's the difference between Django-registration and the built-in Django authentication system?

I was wondering what are the differences between these apps, since they provide the same functionality and Django-registration is written by the creator of Django.

Upvotes: 1

Views: 245

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 599788

They're not the same at all. Django's built in authentication deals with login and permissions. Django-registration deals with registration, ie the ability for people to sign up for accounts.

Upvotes: 1

Related Questions