2

所以我试图让 FeinCMS 启动并运行,我让它在后端工作,但我无法加载页面:

这就是我的 models.py 的设置方式:

Page.register_templates({
    'title': _('Standard template'),
    'path': 'base.html',
    'regions': (
        ('main', _('Main content area')),
        ('sidebar', _('Sidebar'), 'inherited'),
        ),
    })

Page.create_content_type(RichTextContent)
Page.create_content_type(MediaFileContent, TYPE_CHOICES=(
    ('default', _('default')),
    ('lightbox', _('lightbox')),
    ))

我得到的错误是

TemplateDoesNotExist at /test/

zipfel/base.html

Django tried loading these templates, in this order:

Using loader django.template.loaders.filesystem.Loader:
Using loader django.template.loaders.app_directories.Loader:
    /opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/contrib/auth/templates/zipfel/base.html (File does not exist)
    /opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/contrib/admin/templates/zipfel/base.html (File does not exist)
    /opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/contrib/admindocs/templates/zipfel/base.html (File does not exist)
    /Library/Python/2.7/site-packages/feincms/templates/zipfel/base.html (File does not exist)
    /Library/Python/2.7/site-packages/mptt/templates/zipfel/base.html (File does not exist)

现在我明白了,如果我将 base.html 文件放在其中任何一个目录中,它应该可以工作。

2个问题:

base.html 的内容需要是什么?为了能够将 base.html 放在 app 文件夹中,我必须将该路径添加到 TEMPLATE_DIRS 吗?

到目前为止,FeinCMS 的安装对我来说相当棘手

4

1 回答 1

0

我添加了 TEMPLATE_DIRS 的绝对路径,这使我可以将 base.html 放置在我想要的位置

在该文件中,我放置了以下代码,并且能够查看我的页面:

{% load feincms_tags %}

<div id="content">
    {% block content %}
    {% for content in feincms_page.content.main %}
        {{ content.render }}
    {% endfor %}
    {% endblock %}
</div>

<div id="sidebar">
    {% block sidebar %}
    {% for content in feincms_page.content.sidebar %}
        {{ content.render }}
    {% endfor %}
    {% endblock %}
</div>
于 2013-08-02T04:46:30.207 回答