如何使我在 ZMI 中创建的页面模板在“克隆内容”选项卡中可见?
我使用 ZMI 在自定义文件夹中创建了一个页面模板。
我使用 ZMI 将其复制到现有的 Plone 文件夹中。
我希望此页面模板对象在“克隆内容”选项卡中可见。我必须做什么?
I created a Page Template in the Custom folder using the ZMI.
I copied it using the ZMI into an existing Plone Folder.
I would like for this Page Template object to be visible in the Plone Contents tab. What must I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果模板不是其他内容的视图(即,它独立存在),则:
1) 创建一个文件夹(在 Plone 中)来包含该模板。该文件夹将显示在导航中。
2) 将模板放入文件夹中(使用 ZMI)并将其短名称 (ID) 更改为 index_html。这迫使它成为默认视图。
3) 不要在文件夹中放入任何其他内容。至少不需要 Plone 的编辑、导航或查看机制。
或者,如果您允许链接类型在导航中显示,只需输入链接类型并将其指向模板即可。比index_html 配方安全得多。
If the template is not a view for other content (i.e., it stands on its own), then:
1) Create a folder (in Plone) to contain the template. This folder will show in navigation.
2) Put your template into the folder (using the ZMI) and change its short name (ID) to index_html. That forces it to be the default view.
3) Don't put anything else in the folder. At least not anything for which you need Plone's editing, navigation or view machinery.
OR, if you're allowing the link type to show in navigation, just put in a link type and point it to the template. Much safer than the index_html recipe.
在 Plon 中创建一个文件夹。
将
/manage_propertiesForm
添加到网址,并添加一个新属性layout
,其值为模板的 id(可以保留在自定义文件夹中) 。您的模板现在是该文件夹的默认视图。
Create a folder in Plone.
Add
/manage_propertiesForm
to the url and add a new propertylayout
with as value the id of your template (which can remain in the custom folder).Your template is now the default view of this folder.
我们为此问题创建了新的内容类型。
we have created new content type for this issue.