{# plants/templates/plants/location_detail.html #} {% extends "plants/base.html" %} {% block title %}{{ location.name }} — BloomBase{% endblock %} {% block content %}
{% if location.cover_photo %} {{ location.name }} {% else %}
{% endif %}
← Back Edit

{{ location.name }}

{{ plants.count }} plant{{ plants.count|pluralize }}

{% if plants %}
{% for plant in plants %}
{% if plant.species and plant.species.api_image_url %} {{ plant.name }} {% elif plant.thumbnail_url %} {{ plant.name }} {% else %}
🌿
{% endif %}
{{ plant.name }}
{% if plant.species %}
{{ plant.species.scientific_name }}
{% endif %}
{% endfor %}
{% else %}
🪴

No plants here yet.

Identify a plant
{% endif %}
{% endblock %}