Add a template to the Django Admin background using Grappelli

Source: Internet
Author: User
Tags install django pip install django
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.

  • Related Article

    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.