{% extends 'core/base.html' %} {% block title %} {{ plant.common_name.name if plant.common_name else "Unnamed Plant" }} – Nature In Pots {% endblock %} {% block content %}
{% if prev_uuid %} ← Previous {% else %}
{% endif %} {% if next_uuid %} Next → {% else %}
{% endif %}

{{ plant.common_name.name if plant.common_name else "Unnamed Plant" }} ({{ plant.uuid }})

{% if current_user.id == plant.owner_id %} Edit {% endif %}
Type
{{ plant.plant_type }}
Scientific Name
{{ plant.scientific_name.name }}
Mother UUID
{% if plant.mother_uuid %} {{ plant.mother_uuid }} {% else %} N/A {% endif %}
Notes
{{ plant.notes or '—' }}
{% if plant.media %}
Images
{% for m in plant.media %} {% endfor %}
{% else %}

No images uploaded yet.

{% endif %} {% if current_user.id == plant.owner_id %}
Generate Cuttings
{% if children %}
Child Plants
{% if children|length > 6 %} {% else %}
{% for c in children %}
{% if c.media %} {% set first_media = c.media[0] %} {{ first_media.filename }} {% else %}
{% endif %}
{% endfor %}
{% endif %} {% endif %} {% endif %}
← Back to list {% endblock %}