{% extends "base.html" %} {% block content %}
{{ image.caption }} {% if image.albums %}

Albums: {% for album in image.albums %} {{ album}} {% endfor %}

{% endif %} {% if current %} {% if image.likes %}

{% if image.likes|length = 1 %} 1 person likes this {% else %} {{ image.likes|length }} people like this {% endif %}

{% endif %} {% for like in image.likes %} {{ like }} {% endfor %} {% if you-like %}

You like this

{% else %}

{% endif %} {% endif %}

Captured: {{ image.captured }}

Exif

{% endblock %}