{% extends "flickrsets/base.html" %} {% load i18n flickrsets_tags %} {% block title %} {{ photo.title }} {% endblock %} {% block content %}

{% trans "Photos" %} » {{ photo.title }}

{% if photo.description %}
{{ photo.description|linebreaks }}
{% endif %}
{{ photo.title }}
{% flickrsets_get_photo_flickr_urls photo %}

{% trans "View on Flickr: " %} {% for url in photo_flickr_urls %} {{ url.title }} {% if not forloop.last %} · {% endif %} {% endfor %}

{% if photo.exif %}

{% trans "EXIF" %}

{% for key, val in photo.exif.items %}
{{ key }}
{{ val }}
{% endfor %}
 
{% endif %}
{% endblock %}