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

Photo Info

Photo id
{{ photo.slug }}
Photo Taken
{{ photo.taken_at|date:"d.m.Y H:i" }}
Views
{{ photo.views }}
Likes
{{ photo.likes }}

Exif

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