如何在 Plone 中定义默认视图
我已经有一个用于 Plone 站点(主页)的默认视图的页面模板。 如何定义文件夹的默认视图?此默认视图应使用页面模板。
I have already a page template for the default view of a Plone site (main page).
How to define the default view of a folder? This default view should use a page template.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
Try this:
如果您想设置默认视图之一(表格、缩略图等),请使用上面的答案,但如果您想为文件夹的默认视图选择特定内容项,您可以按照建议在 ZMI 中执行此操作:
或在 Python 中以编程方式执行:
希望这会有所帮助!
Use the answers above if you want to set one of the default views (tabular, thumbnail, etc), but if you want to choose a particular content item for the default view of the folder, you can do it in the ZMI as suggested:
or do it programmatically in Python:
Hope this helps!
使用 Giacomo Spettoli 和 Mikko Ohtamaa 发送的信息和链接,我的工作团队中的另一个人能够找到适合我们案例的解决方案:
包括configure.zcml 文件中的新指令(这是我的队友 Mariano 先生发现的):
感谢Giacomo 和Mikko;他们的回答帮助我们解决了这个问题。
Using the information and links send both by Giacomo Spettoli and by Mikko Ohtamaa, another guy from my work team was able to find a solution for our case:
include a new directive in the configure.zcml file (this was found by on of my team mate Mr. Mariano):
Thanks to Giacomo and to Mikko; their answers helped us solve this issue.