{% extends "base.html" %} {% load i18n thumbnail %} {% block title %} {% if object.image %} {% trans "Delete image" %} {% else %} {% trans "Delete video" %} {% endif %} {% endblock %} {% block main %} {% if object.image %}

{% trans "Delete image?" %}

{% else %}

{% trans "Delete video?" %}

{% endif %}
{% if object.image %} Image {% else %} Video {% endif %}
{% if object.image %}

{% trans "Do you really want to delete the image?" %}

{% else %}

{% trans "Do you really want to delete the video?" %}

{% endif %}

{% trans "This cannot be reversed." %}

{% csrf_token %} {% trans "Back to library" %}
{% endblock %}