{# plants/templates/plants/plant_detail.html #} {% extends "plants/base.html" %} {% load plant_extras %} {% block title %}{{ plant.name }} — BloomBase{% endblock %} {% block content %}
{% if plant.species and plant.species.api_image_url %} {{ plant.name }} {% elif plant.thumbnail_url %} {{ plant.name }} {% else %}
🌿
{% endif %}
← Back Edit

{{ plant.name }}

{% if plant.species %}
{{ plant.species.scientific_name }}
{% endif %} {% if plant.location %}

📍 {{ plant.location.name }}

{% endif %} {% if plant.watering or plant.sunlight or plant.species %}
{% if plant.watering %}
💧 {{ plant.get_watering_display }}
{% elif plant.species and plant.species.watering %}
💧 {{ plant.species.watering }}
{% endif %} {% if plant.sunlight %}
☀️ {{ plant.get_sunlight_display }}
{% elif plant.species and plant.species.sunlight %}
☀️ {{ plant.species.sunlight }}
{% endif %} {% if plant.species and plant.species.frost_hardiness_c is not None %}
🌡️ {{ plant.species.frost_hardiness_c }}°C min
{% endif %} {% if plant.species and plant.species.max_height_cm %}
📏 {{ plant.species.max_height_cm }} cm
{% endif %}
{% endif %} {% if plant.bloom_months %}

🌸 Bloom months

{% month_strip plant.bloom_months %}
{% endif %} {% if plant.notes %}

{{ plant.notes|linebreaksbr }}

{% endif %} {% if plant.pruning_months %} {% include "plants/partials/pruning_strip.html" %} {% endif %} {% if plant.card_photos.all %}

🪧 Plant card photos

Edit card photo
{% endif %}
Edit this plant 🪧 Plant card Delete plant
{% endblock %}