{% load staticfiles i18n thumbnail %} {% load url from future %} {% trans "File browser" %}
{% csrf_token %}
{% if is_images_dialog %}
{% trans "Previosly uploaded images" %} {% if files %}
    {% for img in files %}
  • {% thumbnail img.uploaded_file "100x100" crop="center" as im %} {% endthumbnail %} x
  • {% endfor %}
{% else %}

{% trans "No images uploaded" %}

{% endif %}
{% endif %} {% if is_documents_dialog %}
{% trans "Previosly uploaded documents" %} {% if files %} {% else %}

{% trans "No documents uploaded" %}

{% endif %}
{% endif %}
{% trans "Upload file" %} {{ upload_form }}