{% extends "base.html" %} {% set page_title = "Edited Gallery - Orchid Continuum" %} {% block content %}

Edited Gallery

Browse all edited orchid photos and compare versions

Back to Editor
{% if error %} {% endif %} {% if edited_orchids %}
{% for item in edited_orchids %}
{{ item.orchid.scientific_name or item.orchid.display_name or "Unknown Orchid" }}
{{ item.edited_versions|length }} edited version{{ 's' if item.edited_versions|length != 1 else '' }}
Original
{% if item.orchid.image_url %} Original {% else %} {% endif %}
Source: {{ item.orchid.ingestion_source or 'Upload' }}
Latest Edit
{% if item.latest_edit and item.latest_edit.url %} Latest edit {% else %}
Edited Version
{% endif %}
{% if item.latest_edit %} Edited: {{ item.latest_edit.created_at[:10] }} {% endif %}
{% if item.latest_edit %}
Latest Modifications:
{% if item.latest_edit.edit_history %} {% for edit in item.latest_edit.edit_history[-3:] %}
{{ edit.operation|title }}
{% endfor %} {% endif %}
{% endif %}
{% endfor %}

Showing {{ edited_orchids|length }} edited orchids

{% else %}

No Edited Photos Yet

Start editing orchid photos to see your creative work in this gallery.

Start Editing Photos
{% endif %}
Gallery Features
Version Control

All original photos are preserved separately from edited versions, maintaining complete edit history.

Quality Comparison

Side-by-side comparison tools help you see the improvements made through editing.

AI Analysis

Each edited photo includes AI analysis data showing plant features and quality assessments.

Export Options

Download individual versions or complete packages with metadata for professional use.

{% endblock %}