Admin Interface
        {% with messages = get_flashed_messages() %}
            {% if messages %}
                
                    {% for message in messages %}
                        
{{ message }}
                    {% endfor %}
                
            {% endif %}
        {% endwith %}
        
            
Upload New Image
            
        
        Uploaded Images
        
            
                
                    | Thumbnail | Filename | Date Taken | Focal Length | Aperture | Shutter Speed | ISO | Dimensions | Actions | 
            
            
                {% for photo in photos %}
                
                    |  }}) | {{ photo.input_filename }} | {{ photo.date_taken.strftime('%Y-%m-%d %H:%M:%S') }} | {{ photo.focal_length }} | {{ photo.aperture }} | {{ photo.shutter_speed }} | {{ photo.iso }} | {{ photo.width }}x{{ photo.height }} |  | 
                {% endfor %}