How to find a template in Django

Source: Internet
Author: User

Reference: http://my.oschina.net/zuoan001/blog/188782

In Django's setting, there are two configurations for finding a template:

Template_loaders

Template_dirs

The template_loaders is a string tuple and the optional configuration is:

Django.template.loaders.filesystem.Loaderdjango.template.loaders.app_directories. Loaderdjango.template.loaders.eggs.Loaderdjango.template.loaders.cached.Loader

The first two loader are turned on by default, and the latter two are off by default.

By default, Django uses filesystem first. Loader, only when the filesystem. Loader The template is not found, the app_directories is used. Loader

FileSystem. Loader how to find a template: It will find the template according to Template_dirs.

The default settings.py does not have this configuration and needs to be added manually. Setup Example:

' Templates '  = [Os.path.join (Os.path.dirname (Os.path.abspath ("__file__" ) Templates')]

How to find a template in Django

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.