{% extends "base_dark.html" %} {% load exif_filters %} {% block title %} Gallery : Photo : {{ photo.slug }} {% endblock %} {% block content %}
{{ photo.slug }}
{% if photo.get_prev %} {% endif %} {% if photo.get_next %} {% endif %}
Album name
{{ photo.album.name }}
Photo id
{{ photo.slug }}
Photo Taken
{{ photo.taken_at|date:"d.m.Y H:i" }}
Views
{{ photo.views }}
Likes
{{ photo.likes }}
Download
{{ photo.width }}x{{ photo.height }}
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
{{ photo.exif.FocalLengthIn35mmFilm|exif_focallength }}
{% if prev %} « Prev {% endif %}
{% if next %} Next » {% endif %}
{% csrf_token %}
{% endblock %}