How do I customize Django admin?

You can fully customize the admin by changing the templates used to render pages . The Django template engine has a defined order for loading templates. When it loads a template, it uses the first template that matches the name. You can override admin templates by using the same directory structure and file names.

Read more