だから私は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 のインストールは、これまでのところ私にとってかなりトリッキーでした