{% extends "base.html" %} {% block title %}Advanced Orchid Gallery - Five Cities Orchid Society{% endblock %} {% block content %}

Advanced Orchid Gallery

Multi-criteria filtering with real-time updates {% if total_orchids %} - {{ total_orchids }} orchids available {% endif %}

"Where every orchid has a story — and every photo has a home."

Simple Gallery
Advanced Filters {{ current_filters|length }} active
Geographic
Taxonomic
Characteristics
Temporal
Quality
Photos in the Orchid Continuum are shared by our members, partners, and open sources. Contributors keep ownership and receive full credit. Read More →
{% if orchids %}
{{ pagination.total }} orchids found {% if current_filters %} with {{ current_filters|length }} filters applied {% endif %}
{% for orchid in orchids %}
{% if orchid.google_drive_id %} {{ orchid.display_name }} {% elif orchid.image_url and orchid.image_url != '/static/images/orchid_placeholder.svg' %} {{ orchid.display_name }} {% else %}
{% endif %} {% if orchid.ai_confidence %}
{{ (orchid.ai_confidence * 100)|round }}%
{% endif %}
{% if orchid.genus and orchid.species %} {{ orchid.genus }} {{ orchid.species }} {% elif orchid.scientific_name %} {{ orchid.scientific_name }} {% else %} {{ orchid.display_name or "Unknown Orchid" }} {% endif %}
{% if orchid.genus and orchid.species %} {{ orchid.genus }}{{ orchid.species }} {% elif orchid.genus %} {{ orchid.genus }} {% endif %}
{% if orchid.native_habitat %}
{{ orchid.native_habitat[:50] }}{% if orchid.native_habitat|length > 50 %}...{% endif %}
{% endif %}
{% endfor %}
{% if pagination.pages > 1 %} {% endif %} {% else %}

No orchids found

Try adjusting your filters or clearing them to see more results.

{% endif %}
{% endblock %}