{% extends "base.html" %} {% block title %}Compare {{ data.species_name.title() }} Specimens - Orchid Continuum{% endblock %} {% block content %}

🔬 {{ data.species_name.title() }} Comparison

{{ data.specimen_count }} specimens • {{ data.with_photos|length }} with photos

Research Dashboard

{{ data.specimen_count }}

Total Specimens

{{ data.with_photos|length }}

With Photos

{{ data.photographers|length }}

Different Growers

{{ data.climate_conditions|length }}

Climate Types

{% if data.climate_conditions or data.growth_habits %}
Growing Conditions Observed
{% if data.climate_conditions %}
Climate Preferences: {% for condition in data.climate_conditions %} {{ condition }} {% endfor %}
{% endif %} {% if data.growth_habits %}
Growth Habits: {% for habit in data.growth_habits %} {{ habit }} {% endfor %}
{% endif %}
{% endif %}
Specimen Comparison Grid
Each specimen may represent different growing conditions, locations, or care techniques
{% for specimen in data.specimens %}
{% if specimen.google_drive_id %}
{{ specimen.display_name }}
{% else %}
{% endif %}
Specimen #{{ loop.index }}
{% if specimen.photographer %}

Grower: {{ specimen.photographer }}

{% endif %} {% if specimen.ingestion_source %}

Source: {{ specimen.ingestion_source }}

{% endif %} {% if specimen.climate_preference %}

Climate: {{ specimen.climate_preference }}

{% endif %} {% if specimen.growth_habit %}

Growth: {{ specimen.growth_habit }}

{% endif %} {% if specimen.bloom_time %}

Bloom Time: {{ specimen.bloom_time }}

{% endif %} {% if specimen.ai_description %}

AI Notes:

{{ specimen.ai_description[:100] }}...

{% endif %} View Details
{% endfor %}
{% endblock %}