{% extends "base.html" %} {% block title %}My Orchid Collection - Five Cities Orchid Society{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

My Orchid Collection

Add from Gallery Upload New
{{ dashboard.statistics.total_owned }}
Orchids Owned
{{ dashboard.statistics.genera_count }}
Different Genera
{{ dashboard.statistics.total_wishlist }}
On Wishlist
{{ dashboard.statistics.overdue_care + dashboard.statistics.care_due_today }}
Care Tasks
{% if dashboard.care_reminders %}

Care Reminders

{% for reminder in dashboard.care_reminders[:5] %}
{{ reminder.orchid_name }} - {{ reminder.care_type.title() }}
{% if reminder.urgency == 'overdue' %} {{ reminder.days_until|abs }} days overdue {% elif reminder.urgency == 'today' %} Due today {% else %} Due in {{ reminder.days_until }} days {% endif %}
{% endfor %}
{% endif %}

My Orchids

{{ dashboard.statistics.total_owned }} orchids
{% if dashboard.collection.owned_orchids %}
{% for orchid in dashboard.collection.owned_orchids %}
{% if orchid.image_url %} {{ orchid.display_name }} {% else %}
{% endif %}
{{ orchid.display_name }}
{{ orchid.scientific_name or 'Unknown species' }}
{% if orchid.personal_notes %}

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

{% endif %}
{{ orchid.current_stage or 'Healthy' }} Added {{ orchid.added_at[:10] }}
{% endfor %}
{% else %}
🌺

Start Your Orchid Journey

Add your first orchid to begin tracking your collection and receiving personalized care reminders.

Browse Gallery
{% endif %} {% if recommendations.recommendations %}

Recommended for You

Based on your collection and preferences
{% for rec in recommendations.recommendations[:5] %}
{% if rec.image_url %} {{ rec.display_name }} {% else %}
{% endif %}
{{ rec.display_name }}
{{ rec.scientific_name }}
{{ rec.reason }}
{{ (rec.care_compatibility * 100)|round }}% match
{% endfor %}
{% endif %} {% if dashboard.genus_distribution %}

Genus Distribution

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}