{% extends "base.html" %} {% block title %}Member Dashboard - Five Cities Orchid Society{% endblock %} {% block content %}

Welcome Back!

Your personal orchid society dashboard

{{ user_stats.total_points }}
Points This Month
{{ user_stats.notebook_entries }}
Notebook Entries
{{ user_stats.orchid_interactions }}
Orchid Interactions
{{ user_stats.days_active }}
Active Days
{% if 'quick_notes' in settings.dashboard_widgets %}
Quick Notes
{% for note in notebooks.personal_notes[:3] %}
{{ note.content[:150] }}{% if note.content|length > 150 %}...{% endif %}
{{ note.created_at.strftime('%m/%d %H:%M') }}
{% else %}

No notes yet. Add your first quick note!

{% endfor %}
{% endif %} {% if 'recent_orchids' in settings.dashboard_widgets %}
Recently Viewed Orchids

Loading recent orchids...

{% endif %} {% if 'care_reminders' in settings.dashboard_widgets %}
Care Reminders
Manage

Loading care reminders...

{% endif %}
{% if 'points_tracker' in settings.dashboard_widgets %}
Achievement Progress
Monthly Points {{ user_stats.total_points }}/500
Notebook Goals {{ user_stats.notebook_entries }}/20
Active Days {{ user_stats.days_active }}/25
{% endif %}
Orchid Care Clock
00:00:00
Loading...
Quick Theme Switch
{% for theme_id, theme_info in available_themes.items() %}
{% for color in theme_info.preview_colors %}
{% endfor %}
{{ theme_info.name }}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}