Admin Interface
{% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}
Upload New Image
Uploaded Images
ID
Thumbnail
Filename
Date Taken
Technical Info
{% for photo in photos %}
{{ photo.id }}
{{ photo.input_filename }}
{{ photo.date_taken.strftime('%Y-%m-%d %H:%M:%S') }}
{{ photo.focal_length }}mm f/{{ photo.aperture }} {{ photo.shutter_speed }}s ISO{{ photo.iso }}
{% endfor %}