在Django中找不到模板错误

时间:2015-09-23 18:57:05

标签: django django-templates

我对django模板有点困惑,我附加了工作区的屏幕截图,有人可以告诉我如何在buddy应用程序的views.py中使用addprofile.html模板。 在我的settings / base.py中,我提到了以下方式的模板:

# Build paths inside the project like this: join(BASE_DIR, "directory")
BASE_DIR = dirname(dirname(dirname(__file__)))
PROJECT_PATH = os.path.realpath(os.path.dirname(__file__))

STATICFILES_DIRS = [join(BASE_DIR, 'static')]
MEDIA_ROOT = join(BASE_DIR, 'media')
MEDIA_URL = "/media/"

# Use Django templates using the new Django 1.8 TEMPLATES settings

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [
            join(BASE_DIR, 'templates'),
            # insert more TEMPLATE_DIRS here

            join(PROJECT_PATH, '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',
            ],
        },
    },
]

我是Django和python的新手,这是我在django中的第一个应用程序

my workspace

1 个答案:

答案 0 :(得分:1)

创建以下结构:

buddy (这是您现有的budy app文件夹) / templates (这是现有文件夹) / buddy (这是新文件夹)放置所有模板:addprofile.html,edit_profile.html,show_profile.html,success.html以及此路径。

修改您的设置' DIRS'所以它看起来如下:

'DIRS': [
            join(BASE_DIR, 'templates'),
            join(PROJECT_PATH, 'templates/'),
            join(BASE_DIR, 'buddy/templates')