{% extends 'core_ui/base.html' %} {% block title %} {{ plant.common_name.name if plant.common_name else "Unnamed Plant" }} – Nature In Pots {% endblock %} {% block content %}
{% set featured = plant.featured_media or plant.media|first %} Image of {{ plant.common_name.name if plant.common_name else 'Plant' }}

{{ plant.common_name.name if plant.common_name else "Unnamed Plant" }}

{% if plant.scientific_name %}
{{ plant.scientific_name.name }}
{% endif %}

{{ plant.notes or "No description provided." }}

{% if plant.mother_uuid %}

Parent: {{ plant.mother_uuid }}

{% endif %}
{% if plant.media|length > (1 if plant.featured_media else 0) %}

Additional Images

{% for img in plant.media if img != featured %} Plant image {% endfor %}
{% endif %}
{% endblock %}