django-user-accounts
django-user-accounts copied to clipboard
allow admins manually confirm user registration
This will set User.is_active
to false by default. Admin will be able to enable user in admin. Additional integration (like sending notifications) can be done with signals.
I've introduced ACCOUNT_APPROVAL_REQUIRED
flag to settings (which defaults to False
), which controls this feature.
@cezio can you please show a simple full code to achieve this, together with the email notification?