{% extends '_base.html' %} {% load exif_decode %} {% load string_manipulations %} {% load static %} {% block content %}
{% if form.errors %}
Errors:
    {% for field in form %} {% for error in field.errors %}
  • {{ field.label }}: {{ error }}
  • {% endfor %} {% endfor %}
{% endif %}
{% if form.is_multipart %}
{% else %} {% endif %} {% csrf_token %} {% if error %}

{{ error }}

{% else %}

Image size should be lower than 6 MB and max. 15 files to upload

{% endif %}

Supports .WEBP, .JPEG, .JFIF, .PNG, .GIF, .BMP, .ICO, .TIFF

{% if converted_images %} {% with converted_images|length as converted_images_length %} {% if converted_images_length > 1 %}
{% endif %} {% endwith %}
{% for image_url, image_name, public_id, image_name_shorter, original_image_format, converted_image_format, original_file_size, converted_file_size, original_image_mode, original_image_info, converted_image_mode, converted_image_info in converted_images %} {{ image_name_shorter|json_script:'imageId' }} {% endfor %}
Image File name Info Delete
{% if converted_image_format == 'TIFF' %}
{% else %} Uploaded image {% endif %}

{{ image_name_shorter }}

{% endif %}
{% endblock content %}