{% extends "admin/base_site.html" %} {% load i18n static %} {% 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 resize all of the selected images.{% endblocktrans %}

{% else %} {% if not to_resize %}

{% blocktrans %}There are no images available to resize.{% endblocktrans %}

{% else %}

{% blocktrans %}The following images will be resized:{% endblocktrans %}

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

{% blocktrans %}Choose an existing thumbnail option or enter resize parameters:{% endblocktrans %}

{% else %}

{% blocktrans %}Choose resize parameters:{% endblocktrans %}

{% endif %} {{ resize_form.as_p_with_help }}

{% blocktrans %}Warning: Images will be resized in-place and originals will be lost. Maybe first make a copy of them to retain the originals.{% endblocktrans %}

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