{% 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 body %}
{% 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 %}

{% endblock %}