【发布时间】:2016-11-03 18:27:27
【问题描述】:
我正在尝试创建一个 sn-p,以便用户可以将视频拖到博客文章中。似乎没有任何其他方式可以将视频添加到博客文章中。
我添加了创建 sn-p 的代码:
<template id="s_blog_video" name="Blog Video">
<section class="video-wrapper">
<iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/VIDEO_ID" width="560"></iframe>
</section>
</template>
以及将其添加到块中的代码:
<template id="snippets_content" inherit_id="website.snippets">
<xpath expr="//div[@id='snippet_structure']/div[@class='o_panel_body']" position="inside">
<t t-snippet="theme.s_blog_video" t-thumbnail="/theme/static/src/img/ui/generic-book.png"/>
</xpath>
</template>
但是当我点击编辑时,sn-ps 块只是不断地说正在加载。
sn-ps不能加视频吗?有没有其他方法可以将视频添加到博客文章中?
【问题讨论】:
标签: video iframe openerp blogs odoo-9