{% extends "gallery/gallery_base.html" %} {% load static %} {% 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 %}
{% if album %} {{ album.title }} - {% endif %} {{ image.title }}
{% endblock %} {% block content %} {{ image.title }}
{% if album_images %} {% for image in album_images %} {% include 'gallery/partials/thumbnail_preview.html' %} {% endfor %} {% elif albums %} {% for album in albums %} {% with album.display_highlight as image %} {% include 'gallery/partials/thumbnail_preview.html' %} {% endwith %} {% endfor %} {% endif %}
{% endblock %}