{% extends 'layout.html' %} {% block header %}
{% endblock %} {% block wrapper_class %}image-wrapper{% endblock %} {% block content %}
{% if g.user['id'] == image['author_id'] %}
{% endif %}
{% if image['alt'] != '' %}

Alt

{{ image['alt'] }}

{% endif %} {% if image['description'] != '' %}

Description

{{ image['description'] }}

{% endif %}

Info

Filename: {{ image['file_name'] }}

Image ID: {{ image['id'] }}

Author: {{ image['author_id'] }}

Upload date: {{ image['created_at'] }}

{% if file is not false %}

Dimensions: {{ file['width'] }}x{{ file['height'] }}

{% endif %}
{% if exif is not false %}

Metadata

{% for tag in exif %}

{{ tag }}: {{ exif[tag] }}

{% endfor %}
{% endif %}
{% endblock %} {% block script %} {% endblock %}