{% extends "base.html" %} {% block title %}Research Dashboard - Orchid Growth Comparison{% endblock %} {% block content %}

🔬 Orchid Growth Research Dashboard

Compare how the same orchid species grow under different conditions

{{ candidates|length }}

Species Available for Comparison Research

Each has multiple specimens from different growers
🎯 Research Benefits:
  • Study environmental adaptation
  • Compare cultivation techniques
  • Analyze regional variations
  • Document growth differences
Species with Multiple Specimens
Click any species to compare all its specimens side-by-side
{% for candidate in candidates %} {% endfor %}
Species / Genus Specimens With Photos Different Growers Photo Coverage Research Value Actions
{{ candidate.species.title() }} {% if candidate.species in ['trichocentrum', 'cattleya', 'laeliacattleya'] %} Popular {% endif %} {{ candidate.specimens }} {{ candidate.photos }} {% if candidate.photographers > 0 %} {{ candidate.photographers }} {% else %} Unknown {% endif %}
{{ "%.0f"|format(candidate.photo_percentage) }}%
{% set research_score = candidate.specimens * 2 + candidate.photos * 3 + candidate.photographers * 5 %} {% if research_score >= 50 %} Excellent {% elif research_score >= 20 %} Good {% else %} Fair {% endif %} Compare
Research Tips
🌱 Growth Conditions

Look for differences in leaf shape, pseudobulb development, and overall plant structure between specimens.

🌡️ Environmental Factors

Compare how climate preferences (cool, intermediate, warm) affect plant appearance and vigor.

👥 Cultivation Techniques

Different growers may use various potting media, watering schedules, and fertilization programs.

{% endblock %}