{% extends "unfold_extra/filer/action_page.html" %} {% load i18n static %} {% block action_extrahead %} {# admin_filer.css carries the tooltip styling, and hides its button until needed. #} {% endblock %} {% block content %} {% if perms_lacking %} {% blocktranslate asvar message %}Your account doesn't have permissions to copy all of the selected files and/or folders.{% endblocktranslate %} {% include "unfold_extra/filer/helpers/action_notice.html" with message=message link_class="js-history-back" %} {% elif not destination_folders %} {% blocktranslate asvar message %}There are no destination folders available.{% endblocktranslate %} {% include "unfold_extra/filer/helpers/action_notice.html" with message=message link_class="js-history-back" %} {% elif not to_copy %} {% blocktranslate asvar message %}There are no files and/or folders available to copy.{% endblocktranslate %} {% include "unfold_extra/filer/helpers/action_notice.html" with message=message %} {% else %} {{ block.super }} {% endif %} {% endblock %} {% block heading %}{% blocktranslate %}The following files and/or folders will be copied to a destination folder (retaining their tree structure):{% endblocktranslate %}{% endblock %} {% block objects %}{% endblock %} {% block action %}copy_files_and_folders{% endblock %} {% block fields %}
{% include "unfold_extra/filer/helpers/action_destination.html" %} {% include "unfold_extra/filer/helpers/action_form_fields.html" with form=copy_form %}
{% endblock %} {% block submit_row %} {% translate "Copy" as label %} {% translate "It is not allowed to copy files into same folder" as tooltip %} {% include "unfold_extra/filer/helpers/action_submit_row.html" with label=label tooltip=tooltip icon="content_copy" submit_class="js-submit-copy-move w-full lg:w-auto" %} {% endblock %}