{% extends '_base.html' %} {% load static %} {% load string_manipulations %} {% load exif_decode %} {% block content %}
Name: {{ edited_image_name_short }}
Format: {{ edited_image_format }}
Resolution: {{ edited_image_resolution }}
Size: {{ edited_image_size }}
Aspect ratio: {{ edited_image_aspect_ratio }}
Color mode: {{ edited_image_mode }}
{% if not edited_image_exif_data|is_instance:"str" %} {% for key, value in edited_image_exif_data.items %} {% with value|decode_exif_value as formatted_value %}{{ key }}: {{ formatted_value }}
{% endwith %} {% endfor %} {% else %}Exif data: {{ edited_image_exif_data }}
{% endif %}