{% extends "wagtailadmin/base.html" %} {% load embed_video_tags wagtailimages_tags i18n wagtailadmin_tags %} {% block titletag %}{% trans "Delete video" %}{% endblock %} {% block content %} {% trans "Delete video" as del_str %} {% include "wagtailadmin/shared/header.html" with title=del_str icon="media" %}
{% if embed_video.thumbnail %} {% image embed_video.thumbnail max-800x600 %} {% else %} {% video embed_video.url as my_video %} {% endvideo %} {% endif %}
{% usage_count_enabled as uc_enabled %} {% if uc_enabled %} {% endif %}

{% trans "Are you sure you want to delete this video?" %}

{% csrf_token %} {% trans "No, don't delete" %}
{% endblock %}