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 に答える