0
사용자가 비디오를 블로그 게시물로 드래그 할 수 있도록 스 니펫을 만들려고합니다. 블로그 게시물에 동영상을 추가하는 다른 방법은없는 것 같습니다.Odoo 스 니펫에 비디오를 추가 할 수 있습니까?
<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>
을하지만 편집을 클릭하면 미리보기는 지속적으로 부하가 말한다 차단 .
비디오를 미리보기에 추가 할 수 있습니까? 블로그 게시물에 동영상을 추가하는 다른 방법이 있습니까?
나는 그런 쉬운 해결책을 간과했다고 생각할 수 없다. 우리 중 2 명은이 문제를 해결하기 위해 노력 중이었고 탭을 눈치 채지도 못했습니다. 그런 분명한 답변을 주셔서 감사합니다! – lslaz