{% extends "unfold_extra/filer/action_page.html" %} {% load i18n %} {% block bodyclass %}{{ block.super }} delete-confirmation delete-selected-confirmation{% endblock %} {% block content %} {% if perms_lacking or protected %}
{% if perms_lacking %}

{% blocktranslate %}Deleting the selected files and/or folders would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:{% endblocktranslate %}

{% endif %} {% if protected %}

{% blocktranslate %}Deleting the selected files and/or folders would require deleting the following protected related objects:{% endblocktranslate %}

{% endif %}
{% else %} {{ block.super }} {% endif %} {% endblock %} {% block heading %}{% blocktranslate %}Are you sure you want to delete the selected files and/or folders? All of the following objects and their related items will be deleted:{% endblocktranslate %}{% endblock %} {% block objects %}

{% translate "Objects" %}

{% for deletable_object in deletable_objects %} {% endfor %} {% endblock %} {% block action %}delete_files_or_folders{% endblock %} {% block extra_hidden %} {% if is_popup %} {% if select_folder %}{% endif %} {% endif %} {% endblock %} {% block submit_row %} {% translate "Yes, I’m sure" as label %} {% include "unfold_extra/filer/helpers/action_submit_row.html" with label=label variant="danger" icon="delete" submit_class="w-full lg:w-auto" %} {% endblock %}