{% extends "plants/base.html" %} {% block title %}{{ plant.name }} — PlantDB{% endblock %} {% block content %}
{{ plant.name }}
✏️
{% if plant.photo %} {{ plant.name }} {% elif plant.species and plant.species.api_image_url %} {{ plant.species.common_name }} {% else %}
🌿
{% endif %}
{{ plant.name }}
{% if plant.species %}{{ plant.species.scientific_name }}{% endif %}
{% if plant.is_indoor %}Indoor{% else %}Outdoor{% endif %}

📍 {{ plant.location }}

{% if plant.species %}
{% if plant.species.watering %} 💧 {{ plant.species.watering }} {% endif %} {% if plant.species.sunlight %} ☀️ {{ plant.species.sunlight }} {% endif %} {% if plant.species.max_height_cm %} 📏 up to {{ plant.species.max_height_cm }} cm {% endif %} {% if plant.species.growth_rate %} 🌱 {{ plant.species.growth_rate }} {% endif %}
{% if plant.species.api_image_url and plant.photo %}
Species reference: {{ plant.species.common_name }}
{% endif %} {% endif %} {% include "plants/partials/pruning_strip.html" %} {% if plant.notes %}
{{ plant.notes|linebreaksbr }}
{% endif %} {% if plant.pruning_logs.all %}
Pruning history
{% endif %} Delete plant {% endblock %}