{% extends "admin/base_site.html" %} {% load i18n adminmedia fb_tags fb_versions %} {% block stylesheets %} {{ block.super }} {% endblock %} {% block javascripts %} {{ block.super }} {{ media }} {% endblock %} {% block bodyclass %}change-form filebrowser{% if query.pop %} popup{% endif %}{% endblock %} {% block content-class %}content-flexible{% endblock %} {% block breadcrumbs %}{% include "filebrowser/include/breadcrumbs.html" %}{% endblock %} {% block content %}

{% blocktrans with fileobject.filename as escaped_object %}Are you sure you want to delete "{{ escaped_object }}"? All of the following items will be deleted:{% endblocktrans %}

    {{ fileobject.filename }}
{% if filelisting %}
{% for item in filelisting %}
    {{ item.path_relative_directory }}
{% endfor %}
{% endif %} {% if additional_files %}
    {% blocktrans with additional_files as escaped_object %}... and {{ escaped_object }} more Files.{% endblocktrans %}
{% endif %}
{% endblock %}