django-simplecms/example/templates/video.html

14 wiersze
287 B
HTML
Czysty Zwykły widok Historia

{% load embed_video_tags i18n cms %}
2020-02-19 19:13:43 +00:00
<section class="video">
{% if section.video %}
<div class="video">
<div class="iframe">
{% video section.video '800x600' %}
</div>
</div>
{% endif %}
2020-03-24 21:14:33 +00:00
{% editsection '<img src="/static/cms/edit.png">' %}
</section>