{% extends "base.html" %} {% block title %}{{ current_user.lab_name }} - OrchidStein Lab{% endblock %} {% block content %}

🧬 {{ current_user.lab_name }}

Established {{ current_user.lab_established_date.strftime('%B %Y') }} • {{ current_user.breeding_specialization or 'Mixed Genera' }} Focus

{{ active_projects|length }}
Active Projects
{{ lab_collection|length }}
Plants
{{ total_crosses }}
Crosses
Active Projects
View All
{% if active_projects %} {% for project in active_projects[:3] %}
{{ project.project_name }}
{{ project.project_code }}
{{ project.progress_percentage }}%
{{ project.status.title() }}
{% endfor %} {% else %}

No active projects yet. Start your first breeding project!

Create Project
{% endif %}
Recent Activity
{% if recent_activity %} {% for activity in recent_activity[:5] %}
{{ activity.description|safe }}
{{ activity.timestamp.strftime('%b %d, %Y at %I:%M %p') }}
{% endfor %} {% else %}

No recent activity. Start breeding to see updates here!

{% endif %}
Breeding Calendar

Loading breeding schedule...

Lab Statistics
{{ success_rate }}%
Success Rate
{{ flowering_plants }}
Flowering
{{ pending_analysis }}
Pending Analysis
{{ awards_potential }}
Award Potential
AI Breeding Insights
Recommended Next Crosses
{% if ai_recommendations %} {% for rec in ai_recommendations[:3] %}
{{ rec.pod_parent }} × {{ rec.pollen_parent }} ({{ rec.success_probability }}% success)
{% endfor %} {% else %}

Add more breeding data to get AI recommendations

{% endif %}
Trait Patterns Discovered
{% if trait_insights %} {% for insight in trait_insights[:3] %}
{{ insight.description }}
{% endfor %} {% else %}

Complete more crosses to discover trait patterns

{% endif %}
{% endblock %}