The admin.py file is used to display your models in the Django admin panel . You can also customize your admin panel.
Read moreHow 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