{% extends "base.html" %} {% block title %}{{ orchid.display_name }} - Orchid Continuum{% endblock %} {% block content %}
{% if orchid.image_url or orchid.google_drive_id %} {% set image_url = '/api/drive-photo/' + orchid.google_drive_id if orchid.google_drive_id else orchid.image_url %} {{ orchid.display_name }}

No image available

{% endif %}
{{ orchid.display_name }} OC-{{ "%04d"|format(orchid.id) }}
{% if orchid.scientific_name %}

{{ orchid.scientific_name }}

{% endif %}
{% if orchid.is_featured %} Featured {% endif %} {% if orchid.validation_status == 'validated' %} Verified {% elif orchid.validation_status == 'needs_review' %} Needs Review {% endif %}
{{ orchid.view_count or 0 }} views
{{ orchid.created_at.strftime('%B %d, %Y') }}
{% if care_available %}
Professional Care Sheet Available

Generate a printable care guide based on Charles Baker, AOS, and RHS expertise

{% endif %} {% if habitat_info.origin_summary or habitat_info.habitat_description %}
Origin & Natural Habitat
{% if habitat_info.origin_summary %}

{{ habitat_info.origin_summary }}

{% endif %} {% if habitat_info.habitat_description %}

{{ habitat_info.habitat_description }}

{% endif %} {% if habitat_info.conservation_notes %}
{% for note in habitat_info.conservation_notes %} {{ note }}{% if not loop.last %} {% endif %} {% endfor %}
{% endif %}
{% endif %}
Classification
{% if orchid.genus %}

{{ orchid.genus }}

{% endif %} {% if orchid.species %}

{{ orchid.species }}

{% endif %} {% if orchid.author %}

{{ orchid.author }}

{% endif %} {% if orchid.region %}

{{ orchid.region }}

{% endif %} {% if orchid.native_habitat %}

{{ orchid.native_habitat }}

{% endif %}
Growing Characteristics
{% if orchid.growth_habit %}
{{ orchid.growth_habit|title }}
{% endif %} {% if orchid.climate_preference %}
{{ orchid.climate_preference|title }}
{% endif %} {% if orchid.bloom_time %}

{{ orchid.bloom_time }}

{% endif %} {% if orchid.leaf_form %}

{{ orchid.leaf_form }}

{% endif %} {% if orchid.pseudobulb_presence is not none %}
{% if orchid.pseudobulb_presence %} Present {% else %} Not Present {% endif %}
{% endif %}
{% if orchid.ai_description or orchid.ai_confidence %}
AI Analysis
{% if orchid.ai_description %}

{{ orchid.ai_description }}

{% endif %} {% if orchid.ai_confidence %}
{{ (orchid.ai_confidence * 100)|round }}%
{% endif %}
{% endif %}
Cultural Recommendations & Expert Care
{% if care_data %}
Light Requirements

{{ care_data.light.requirement }}

{{ care_data.light.details }}
Temperature

Day: {{ care_data.temperature.day }}

Night: {{ care_data.temperature.night }}

Humidity

{{ care_data.humidity.requirement }}

{{ care_data.humidity.range }}
Air Flow

{{ care_data.air_flow.requirement }}

{{ care_data.air_flow.details }}
Watering

{{ care_data.watering.details }}

Fertilizer

{{ care_data.fertilizer.details }}

Blooming & Rest

Season: {{ care_data.blooming_season }}

Rest Period: {{ care_data.rest_period }}

{% if care_data.special_notes %}
Expert Growing Tips
    {% for note in care_data.special_notes %}
  • {{ note }}
  • {% endfor %}
{% endif %} {% if care_data.attribution %}
{{ care_data.attribution|safe }}
{% endif %} {% else %}
{% if cultural_recommendations.light %}
Light

{{ cultural_recommendations.light }}

{% endif %} {% if cultural_recommendations.temperature %}
Temperature

{{ cultural_recommendations.temperature }}

{% endif %} {% if cultural_recommendations.water %}
Water

{{ cultural_recommendations.water }}

{% endif %} {% if cultural_recommendations.fertilizer %}
Fertilizer

{{ cultural_recommendations.fertilizer }}

{% endif %}
{% if cultural_recommendations.growing_tips %}
Growing Tips
    {% for tip in cultural_recommendations.growing_tips %}
  • {{ tip }}
  • {% endfor %}
{% endif %} {% if cultural_recommendations.general_notes %}
Additional Notes

{{ cultural_recommendations.general_notes }}

{% endif %} {% endif %} {% if habitat_info.climate_analysis %}
Climate Preferences
    {% for analysis in habitat_info.climate_analysis %}
  • {{ analysis }}
  • {% endfor %}
{% endif %}
Source Information
{% if orchid.photographer %}

Photographer: {{ orchid.photographer }}

{% endif %} {% if orchid.image_source %}

Image Source: {% if orchid.image_source.startswith('http') %} View Original {% else %} {{ orchid.image_source }} {% endif %}

{% endif %}

Ingestion Source: {{ orchid.ingestion_source|replace('_', ' ')|title }}

{% if orchid.validation_status %}

Validation Status: {{ orchid.validation_status|title }}

{% endif %}
{% if orchid.ocr_text %}
OCR Extracted Text
{{ orchid.ocr_text }}
{% endif %}
{% if related_orchids %}

Related Orchids {% if orchid.genus %} (Same genus: {{ orchid.genus }}) {% endif %}

{% for related in related_orchids %}
{% if related.google_drive_id %} {{ related.display_name }} {% else %}
{% endif %}
{% if related.scientific_name %} {{ related.scientific_name }} {% else %} {{ related.display_name }} {% endif %}
{% if related.display_name and related.scientific_name and related.display_name != related.scientific_name %}

{{ related.display_name }}

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