{% extends "wagtailadmin/base.html" %} {% load embed_video_tags wagtailimages_tags wagtailadmin_tags static i18n l10n %} {% block titletag %}{% blocktrans with title=embed_video.title %}Editing video {{ title }}{% endblocktrans %}{% endblock %} {% block extra_css %} {{ block.super }} {% include "wagtailadmin/pages/_editor_css.html" %} {{ form.media.css }} {% endblock %} {% block extra_js %} {{ block.super }} {% include "wagtailadmin/pages/_editor_js.html" %} {{ form.media.js }} {% url 'wagtailadmin_tag_autocomplete' as autocomplete_url %} {% endblock %} {% block content %} {% trans "Editing" as editing_str %} {% include "wagtailadmin/shared/header.html" with title=editing_str subtitle=embed_video.title icon="media" usage_object=embed_video %} {% include "wagtailadmin/shared/non_field_errors.html" %}
{% csrf_token %}
    {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %} {% include "wagtailadmin/shared/field_as_li.html" with li_classes="label-above label-uppercase" %} {% endif %} {% endfor %}
{% if user_can_delete %} {% trans "Delete video" %} {% endif %}
{% video embed_video.url as my_video %} {% video my_video "small" %}
{% trans "URL" %}
{{ my_video.url }}
{% trans "Backend" %}
{{ my_video.backend }}
{% endvideo %}
{% if user_can_delete %} {% trans "Delete video" %} {% endif %}
{% endblock %}