{% extends "plants/base.html" %} {% block title %}{{ plant.name }} — PlantDB{% endblock %} {% block content %}
{{ plant.name }}
✏️
{% if plant.thumbnail_url %} {{ 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 %}
{% 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.watering %} 💧 {{ plant.species.watering }} {% endif %} {% if plant.sunlight %} {{ plant.get_sunlight_display }} {% elif 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 %}
{% endif %} {% if plant.species and plant.species.vpc_slug %}
{% csrf_token %}
{% endif %} {% load plant_extras %} {% if plant.bloom_months %}
🌸 Bloom
{% month_strip plant.bloom_months %}
{% endif %} {% if plant.notes %}
{{ plant.notes|linebreaksbr }}
{% endif %} {% if plant.card_photos.all %} 🪧 View plant card {% endif %} Delete plant {% endblock %}