{# plants/templates/plants/dashboard.html #} {% extends "plants/base.html" %} {% load plant_extras %} {% block title %}BloomBase{% endblock %} {% block content %}

Hello, Plant Lover! ๐ŸŒฟ

What are we growing today?

Identify a plant and add it to Bloombase.

๐Ÿชด
My Garden
{{ total_plants }} Plant{{ total_plants|pluralize }} ยท {{ location_count }} Area{{ location_count|pluralize }}
โ€บ
{% 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 %}
{% endblock %}