{% load gallery_tags %} {% for photo in photos %}
{% if photo.thumbnail %} {{ photo.title }} {% elif photo.watermarked %} {{ photo.title }} {% else %} {{ photo.title }} {% endif %} {% if is_photographer %} {% endif %}
{% include "gallery/partials/photo_caption.html" with photo=photo is_photographer=is_photographer %} {{ photo.filename }} {% if photo.image_width and photo.image_height %} · {{ photo.image_width }}×{{ photo.image_height }} {% endif %} {% if photo.file_size %} · {{ photo.file_size|filesizeformat }} {% endif %} {% if photo.camera_model or photo.date_taken or photo.aperture %}
{% if photo.camera_model %}{{ photo.camera_model }}{% endif %} {% if photo.focal_length %}· {{ photo.focal_length }}{% endif %} {% if photo.aperture %}· {{ photo.aperture }}{% endif %} {% if photo.shutter_speed %}· {{ photo.shutter_speed }}{% endif %} {% if photo.iso %}· ISO {{ photo.iso }}{% endif %} {% endif %} {% if photo.date_taken %}
Taken {{ photo.date_taken|date:"N j, Y g:i A" }} {% endif %}
{% if not is_photographer %} {% include "gallery/partials/selection_buttons.html" with photo=photo current_choice=selections|dict_get:photo.pk current_print_size=print_sizes_map|dict_get:photo.pk print_sizes=print_sizes %} {% endif %}
{% empty %}

No photos yet.

{% endfor %}