{% 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_tags.all %}

{% trans "EXIF" %}

{% for tag in photo.exif_tags.all %}
{{ tag.label }}
{{ tag.value }}
{% endfor %}
 
{% endif %}
{% endblock %}