Adrián
Adrián

Reputation: 6255

django-registration vs scratch registration implementation for admin-activated accounts

I need to implement a fairly simple registration workflow:

I've been reading about the django-registration application.

From what I've read, it seems that this app is used very frequently but I'm not sure of its advantages.

So, my question is: from the following options (I'm open to other alternatives as well), what would be better in this case?

Also, reasons supporting the choice please.

Upvotes: 3

Views: 1110

Answers (1)

stupidbodo
stupidbodo

Reputation: 466

you might want to take a look at django inspectional registration it fits your use case perfectly. It's an enhanced version of django registration since the latter doesn't have the function to approve/deny user's registration.

Upvotes: 4

Related Questions