{% extends "layout.html" %} {% set page_title = "My Orchid Dashboard" %} {% block content %}

Welcome Back, {{ current_user.get_full_name() }}!

Your Orchid ID: {{ current_user.user_id }} {% if current_user.experience_level %} | Experience: {{ current_user.experience_level }} {% endif %}

{{ stats.total_contributions or 0 }}

Total Orchids

{{ stats.ai_analyzed or 0 }}

AI Analyzed

{{ stats.featured_orchids or 0 }}

Featured

{{ stats.total_views or 0 }}

Total Views

My Orchid Collection
Add Orchid
{% if user_orchids %}
{% for orchid in user_orchids[:12] %}
{% if orchid.image_url %}
{{ orchid.display_name }}
{% endif %}
{{ orchid.display_name or orchid.scientific_name }}
{% if orchid.ai_confidence %}
{{ "%.0f"|format(orchid.ai_confidence * 100) }}% AI Match
{% endif %}
View {% if orchid.is_featured %} {% endif %}
{% endfor %}
{% if user_orchids|length > 12 %} {% endif %} {% else %}
No Orchids Yet

Upload your first orchid to get started with AI analysis!

Upload First Orchid
{% endif %}
Recent Activity
{% if user_uploads %}
{% for upload in user_uploads %}
{{ upload.original_filename or upload.filename }}

Uploaded {{ upload.created_at.strftime('%Y-%m-%d %H:%M') if upload.created_at else 'Unknown' }}

{% if upload.processed %}Processed{% else %}Processing{% endif %}
{% endfor %}
{% else %}

No recent activity

{% endif %}
Your Orchid Philosophy
{% set philosophy_badge = current_user.badges|selectattr('badge_type', 'eq', 'philosophy_quiz')|first %} {% if philosophy_badge %}
{{ philosophy_badge.badge_data.badge_emoji }}

{{ philosophy_badge.badge_data.badge_name }}

{{ philosophy_badge.badge_data.philosophy }}

{{ philosophy_badge.badge_data.growing_style }}

{{ philosophy_badge.badge_data.description }}

Retake Quiz {% else %}
🌺
Discover Your Philosophy

Are you a Stoic grower? Epicurean? Skeptic? Take our 2-minute quiz to find out!

Take Philosophy Quiz {% endif %}
Your Achievements
{% if achievements %}
{% for achievement in achievements %}
{{ achievement.name }}
{{ achievement.description }}
{% endfor %}
{% else %}

Upload your first orchid to start earning achievements!

{% endif %}
Your Impact

{{ stats.rhs_verified or 0 }}

RHS Verified

{{ stats.total_contributions or 0 }}

Contributions

You've contributed to the world's largest collaborative orchid database!
{% endblock %}