{% extends "gallery/gallery_base.html" %}
{% load staticfiles %}
{% block title %}
{% if album %}{{ album.title }} - {% endif %}{{ image.title }}
{% endblock %}
{% block header %}
{% endblock %}
{% block bar_detail %}
{% if image.exif.Camera %}
{{ image.exif.Camera }}
{% endif %}
{% if image.exif.LensModel %}
{{ image.exif.LensModel }}
{% endif %}
{% if image.exif.FocalLengthIn35mmFilm %}
{{ image.exif.FocalLengthIn35mmFilm }}mm
{% endif %}
{% if image.exif.Aperture %}
F/{{ image.exif.Aperture }}
{% endif %}
{% if image.exif.Exposure %}
{{ image.exif.Exposure }}s
{% endif %}
{% if image.exif.ISOSpeedRatings %}
ISO {{ image.exif.ISOSpeedRatings }}
{% endif %}
{% endblock %}
{% block bar_title %}