[Fixed]-Django User Management Add, Disable and choose Group

1👍

For further reference so those who come across this post can benefit, I have searched for more than a week for a simple, and quick user management app.

There are two notable solutions advanced solutions first django-user-accounts it handles:

  1. User activation
  2. Forget Password
  3. Sign up
  4. Email confirmation
  5. Signup tokens for private betas
  6. Password reset
  7. Account management (update account settings and change password)
  8. Account deletion

second notable solution is django-userarena it handles

  1. signup
  2. signin
  3. account editing
  4. privacy settings
  5. private messaging

having a back-office solution that only administrators are offered the ability to create a user, enable/disable them. I was only left with the solution of creating my own code, which is not bad, but I was hoping to find an easy, and tested solution.

Maybe if somebody is interested I can upload it someday.

Thanks

Leave a comment