{% extends "base.html" %} {% block title %}Members Collection Area - The Orchid Continuum{% endblock %} {% block content %}

Members Collection Area

Professional research hub for comprehensive orchid collection management

{{ collection_stats.total_orchids }}

Total Orchids

{{ collection_stats.flowering_count }}

Currently Flowering

{{ collection_stats.genera_count }}

Unique Genera

{{ collection_stats.research_ready }}

Research Ready

Recent Additions
{% if recent_additions %} {% for addition in recent_additions %}
{{ addition.orchid_record.display_name if addition.orchid_record else 'Unknown Orchid' }}
Added {{ addition.created_at.strftime('%B %d, %Y') }} {% if addition.acquisition_source %} • {{ addition.acquisition_source }} {% endif %}
{{ addition.health_status.title() if addition.health_status else 'Unknown' }}
{% endfor %} {% else %}

No collection items yet

Start building your collection to see insights here
{% endif %}
External Database Integration

{{ external_db_status.eol_updated }}

EOL Updated

{{ external_db_status.gbif_updated }}

GBIF Occurrences

{{ external_db_status.ecological_complete }}

Ecological Data

{{ external_db_status.literature_citations }}

Literature Citations
Research Opportunities
{% if research_opportunities %}
{% for opportunity in research_opportunities[:6] %}
{{ opportunity.title or 'Research Opportunity' }}
{{ opportunity.priority.title() if opportunity.priority else 'Low' }}

{{ opportunity.description or 'Research opportunity available' }}

{{ opportunity.orchid_name }}
{% endfor %}
{% else %}

No research opportunities identified

Add more collection items to discover research possibilities
{% endif %}
{% if potential_collaborators %}
Potential Collaborators
{% for collaborator in potential_collaborators[:4] %}
{{ collaborator.user.first_name }} {{ collaborator.user.last_name }}

{{ collaborator.collection_count }} orchids
Shared: {{ collaborator.shared_genera | join(', ') }}

{% endfor %}
{% endif %}
{% endblock %}