[Answered ]-Django admin user

2👍

What they recommend is to use the Users model provided by the django.contrib.auth application. It’s the standard in django and many other apps depend on this model to integrate with user data. Being the django admin one of them.

Note that not all users created using this model have access to the admin site. Only the ones with is_staff set to True.

To assign extra user information on the Users model you should use Profiles.

Leave a comment