{% set title = image.title or image.uuid %} {% extends "page.html" %} {% block title %}{{ image.title or image.uuid }}{% endblock %} {% block subtitle %}{{ image.date }}{% endblock %} {% block buttons %}
{% if image.status == PhotoStatus.private %} {% else %} {% endif %}
{% endblock %} {% block head %} {% endblock %} {% block body %}
{% if image.lat and image.lon %}
{{ image.lat }}, {{ image.lon }}
{% endif %} {% if image.description %}

Description

{{ image.description }}

{% endif %}

Versions

    {% for img in image.files %}
  • {{ img.uuid }}
    {{ img.fname }}
    {{ img.path | basename }}
    {{ img.size | filesizeformat }}{% if img.width %} - {{ img.width }} x {{ img.height }}{% endif %}
    {% if img.orientation > 0 %}
    Rotation: {{ img.orientation * 90 }}°
    {% endif %}
    {{ img.format }}
  • {% endfor %}

Tags{% if auth %} edit{% endif %}

{% if nearby %}

Nearby

{% for i in nearby %} {% endfor %}
{% endif %} {% if recent %}

Recent

{% for i in recent %} {% endfor %}
{% endif %} {% endblock %}