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

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

{% trans "Take me back" %}
{% else %} {% if not destination_folders %}

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

{% trans "Take me back" %}
{% else %} {% if not to_move %}

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

{% trans "Take me back" %}
{% else %}

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

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

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