How does the admin in Django work?

Source: Internet
Author: User

1. Find the admin.py of the app

When the service starts, Django Boots urlconf from ' url.py ' and executes the ' admin.autodiscover () statement. This function iterates through the installed_apps configuration and looks for the relevant admin.py file. If admin.pyis found under the specified app directory, it executes the code in it.

url.py----(admin.autodiscover)---->installed_app----(looking for installed apps)---->admin.py

2. Registering the module display interface

In the ' admin.py ' file in the ' Books ' application directory, each call to ' admin.site.register () ' will register that module with the management tool. The Administration tool displays an edit/modify interface only for those modules that are explicitly registered.

How does the admin in Django work?

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.