Use Grappelli to add a template for the Django Admin background _python

Source: Internet
Author: User
Tags auth install django pip install django

Grappelli is the most-star Django template system on GitHub.
Http://django-grappelli.readthedocs.org/en/latest/quickstart.html

Copy Code code as follows:

Pip Install Django-grappelli
settings.py

Installed_apps = (
' Grappelli ',
' Django.contrib.admin ',
)

Add URL Item

Copy Code code 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 value, ignore

Define Template Context Processors

Copy Code code 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"
)

For convenience, the django1.7 defaults have been added.

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.