Django apps, as well as third-party apps, come with their own administration settings; however, there is a mechanism to switch these settings off and use your own, preferred administration settings. In this recipe, you will learn how to exchange the standard administration settings from the django.contrib.auth app with custom administration settings of your own.
Customizing default admin settings
Getting ready
Create a custom_admin app, and put this app under INSTALLED_APPS, in the settings. For Docker projects, add it to the docker-compose.yml app volumes.