在错误的目录中寻找模板

时间:2015-08-02 17:42:13

标签: python django django-templates openshift

我已将我的Django项目上传到Openshift并且python代码正常工作,但是,我的模板是从错误的文件夹加载的:

/var/lib/openshift/55b9********************/templates

我的settings.py文件包含:

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

TEMPLATE_DIRS = (
    os.path.join(BASE_DIR,  'templates'),
)

正确指向

/var/lib/openshift/55b9********************/app-root/runtime/repo/wsgi/marko/templates

如django的追溯页面所示。为什么会发生这种情况?我可以将模板复制到它查找的文件夹,但我不想将任何项目文件放在项目文件夹之外。本地计算机上的runserver在正确的文件夹中查找模板。

1 个答案:

答案 0 :(得分:2)

你在运行Django 1.8吗?不推荐使用TEMPLATE_DIRS指令,并将其替换为TEMPLATES

根据the docs,您应该像这样更新您的设置:

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [
            # insert your TEMPLATE_DIRS here
            os.path.join(BASE_DIR, 'templates'),
        ],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                # Insert your TEMPLATE_CONTEXT_PROCESSORS here or use this
                # list if you haven't customized them:
                'django.contrib.auth.context_processors.auth',
                'django.template.context_processors.debug',
                'django.template.context_processors.i18n',
                'django.template.context_processors.media',
                'django.template.context_processors.static',
                'django.template.context_processors.tz',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

假设BASE_DIR/templates指向正确的目录。