Grappelli is the most star Django template system on GitHub
Http://django-grappelli.readthedocs.org/en/latest/quickstart.html#installation
The code is as follows:
Pip Install Django-grappelli
settings.py
Installed_apps = (
' Grappelli ',
' Django.contrib.admin ',
)
Add URL entry
The code is as follows:
Urlpatterns = Patterns ("',
(R ' ^grappelli/', include (' Grappelli.urls ')), # Grappelli URLs
(R ' ^admin/', include (Admin.site.urls)), # Admin Site
)
The official installation instructions have the Staticfiles_finder defined, but as with the default values, ignoring
Define Template Context Processors
The code is as follows:
Template_context_processors = (
"Django.contrib.auth.context_processors.auth",
"Django.core.context_processors.debug",
"Django.core.context_processors.i18n",
"Django.core.context_processors.media",
"Django.core.context_processors.static",
"Django.core.context_processors.tz",
"Django.contrib.messages.context_processors.messages"
)
The default value for django1.7 has been added here for convenience.