{% extends "admin/base.html" %} {% load i18n staticfiles %} {% block breadcrumbs %} {% include "admin/filer/breadcrumbs.html" %} {% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ block.super }} {% include 'admin/filer/folder/include/choose_destination_js.html' %} {% endblock %} {% block content %}

{% 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 }}

{% endblock %}