How to add an app background
First, add background applications to settings. py.
Delete 'django. contrib. admin' in the installed_apps configuration.
Enable it
Then configure in URLs. py
Remember to remove the comment of the imported package, that is, to make it look like this.
From Django. contrib import Admin
Admin. autodiscover ()
You can also enable admin URLs.
URL (r '^ admin/', include (Admin. Site. URLs )),
But this is not enough.
Create an admin. py file in the app directory, and add the classes to be controlled in the background,
Finally, register it in the admin application.
Eg:
# Coding: utf8
From Django. contrib import Admin
From splblog. Models import tag
Admin. Site. Register (TAG)
This is the simplest binding. For details, use the built-in Django component to control the display style.
Remember to synchronize the database
Python manage. py validate
Python manage. py syncdb
Python manage. py runserver
Enter
Http: // localhost: 8000/admin/
Access