{% extends "base.html" %} {% load i18n %} {% load exif_filters %} {% block title %} {{ photo.album.name }} : {{ photo.slug }} {% endblock %} {% block parallax %}{% endblock %} {% block content %}
{{ photo.slug }}
{% if photo.get_prev %} {% endif %} {% if photo.get_next %} {% endif %}

{% trans "Photo Info" %}

{% trans "Album" %}
{{ photo.album.name }}
{% trans "Photo Name" %}
{{ photo.slug }}
{% trans "Photo Taken" %}
{{ photo.taken_at|date:"d.m.Y H:i" }}
{% trans "Views" %}
{{ photo.views }}
{% trans "Likes" %}
{{ photo.likes }}

{% trans "Exif" %}

{% trans "Camera" %}
{{ photo.exif.Model }}
{% trans "Lens" %}
{{ photo.exif.LensModel }}
{% trans "Shutter Speed" %}
{{ photo.exif.ExposureTime|exif_exposuretime }}
{% trans "Aperture" %}
{{ photo.exif.FNumber|exif_fnumber }}
{% trans "ISO" %}
{{ photo.exif.ISOSpeedRatings|exif_isospeedratings }}
{% trans "Focal Length" %}
{{ photo.exif.FocalLength|exif_focallength}}
{% trans "Focal Length in 35mm" %}
{{ photo.exif.FocalLengthIn35mmFilm|exif_focallength }}
{% trans "Keywords" %}
{{ photo.exif.Keywords|exif_keywords }}
{% if liked %} {% endif %} {% endblock %}