你好,我是新来的鹡鸰。最初,我看到我们可以通过 Draftail 方便地嵌入视频,但是我无法给它任何样式。因此我交换了方法,到目前为止,我一直在使用以下实现将视频嵌入到我的项目中。
块.py
class VideoBlock(blocks.StreamBlock):
'''rich text'''
title = blocks.CharBlock(required=True, help_text="Add your Title")
texts = blocks.TextBlock(required=True, help_text="Add your additional text")
embed = EmbedBlock()
class Meta:
template = "streams/video_block.html"
icon = "edit"
label = "Full Rich Text
video_block.html
{% load wagtailembeds_tags %}
{%for content in self %}
<div class="container" style="text-align: center;">
{{content}}
{% embed page.video_url %}
</div>
{%endfor%}
话虽如此,我仍然不知道如何正确调整它的大小。我希望我的网站看起来像这样:这里