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

🌺 {{ theme_info.name }}

Found {{ orchid_count }} orchids in this collection

All Themes All Orchids
{% for theme_key, theme_data in themes.items() %} {{ theme_data.name }} {% endfor %}
{% if orchids %}
{% for orchid in orchids %}
{% if orchid.google_drive_id %} {{ orchid.scientific_name or 'Orchid' }} {% elif orchid.image_path %} {{ orchid.scientific_name or 'Orchid' }} {% else %} Orchid placeholder {% endif %}
{{ orchid.scientific_name or 'Unknown Species' }}
{% if orchid.common_name %}

{{ orchid.common_name }}

{% endif %} {% if orchid.location %}

{{ orchid.location }}

{% endif %} {% if orchid.description %}

{{ orchid.description[:100] }}{% if orchid.description|length > 100 %}...{% endif %}

{% endif %}
{% endfor %}
{% else %}

No orchids found for this theme

Try exploring a different theme or check back later.

Back to Themes
{% endif %}
{% endblock %}