🔍 Orchid Discovery Center
Search, Browse & Identify Orchids from Our Database
Database contains {{ widget_data.total_orchids or 0 }} orchid records. Start typing to search...
{% if widget_data.orchids %}
{% for orchid in widget_data.orchids %}
{% if orchid.image_url and orchid.image_url != '/static/images/orchid_placeholder.svg' %}
{% elif orchid.google_drive_id %}
{% else %}
{% endif %}
{{ orchid.display_name or orchid.scientific_name }}
{% if orchid.genus %}Genus: {{ orchid.genus }}
{% endif %}
{% if orchid.species %}Species: {{ orchid.species }}
{% endif %}
{% if orchid.native_habitat %}Habitat: {{ orchid.native_habitat[:50] }}{% if orchid.native_habitat|length > 50 %}...{% endif %}
{% endif %}
{% if orchid.climate_preference %}Climate: {{ orchid.climate_preference|title }}{% endif %}
{% endfor %}
{% else %}
No Orchids Found
Try searching for orchid names or use the filter options above.
{% endif %}