{% extends "admin/base_site.html" %} {% load i18n filer_admin_tags %} {% block breadcrumbs %} {% include "admin/filer/breadcrumbs.html" %} {% endblock %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block content %} {% if perms_lacking %}

{% blocktrans %}Your account doesn't have permissions to copy all of the selected files and/or folders.{% endblocktrans %}

{% else %} {% if not destination_folders %}

{% blocktrans %}There are no destination folders available.{% endblocktrans %}

{% else %} {% if not to_copy %}

{% blocktrans %}There are no files and/or folders available to copy.{% endblocktrans %}

{% else %}

{% blocktrans %}The following files and/or folders will be copied to a destination folder (retaining their tree structure):{% endblocktrans %}

{% csrf_token %}
{% for f in files_queryset %} {% endfor %} {% for f in folders_queryset %} {% endfor %}

{{ copy_form.as_p_with_help }}

{% endif %} {% endif %} {% endif %} {% endblock %}