最近在研读django1.7文档,发现里面对路径的叙述非常详细。正好项目中需要配置模版路径。
1、setting中配置了 模版预处理
# Application definitionfrom django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORSTEMPLATE_CONTEXT_PROCESSORS += ( "django.contrib.auth.context_processors.auth", 'django.core.context_processors.request',)
2、静态路径配置
STATIC_ROOT = PROJECT_DIR.child('statics')STATIC_URL = '/static/'STATICFILES_DIRS = ( PROJECT_DIR.child('static'),)MEDIA_ROOT = PROJECT_DIR.child('media')MEDIA_URL = '/media/'TEMPLATE_DIRS = ( PROJECT_DIR.child('templates'),)
其中 TEMPLATE_DIRS配置,可以实现在app中查询templates目录