{% extends "plants/base.html" %} {% load plant_extras %} {% block title %}Dashboard — BloomBase{% endblock %} {% block content %}
{{ today|date:"F Y" }}
{{ total_plants }}
Plants
{{ blooming_now_count }}
Blooming now
{% if blooming_now %}
🌸 Blooming this month
{% for plant in blooming_now %}
{{ plant.name }}
{{ plant.location }}
{% month_strip plant.bloom_months %}
{% endfor %}
{% endif %} {% if latest_plants %}
🌿 Recently added
{% for plant in latest_plants %} {% if plant.species and plant.species.api_image_url %} {% elif plant.thumbnail_url %} {% else %}
🌿
{% endif %}
{{ plant.name }}
{{ plant.location }}
{% endfor %}
{% endif %}
+ Add a plant
{% endblock %}