{# plants/templates/plants/locations.html #} {% extends "plants/base.html" %} {% block title %}My Garden — BloomBase{% endblock %} {% block content %} {% load static %}

My Garden

Edit
Search plants or areas
{% for loc in locations %} {% with idx=forloop.counter0 %}
{% if loc.cover_photo %} {{ loc.name }} {% else %}
{% endif %}
{{ loc.name }}
{{ loc.plant_count }} plant{{ loc.plant_count|pluralize }}
{% endwith %} {% empty %}

No areas yet — add one below!

{% endfor %}
{% csrf_token %}
{% endblock %}