{% extends 'core_ui/base.html' %} {% block title %}Plant List – Nature In Pots{% endblock %} {% block content %}

Plant List

{% if plants %}
{% for plant in plants %}
{{ plant.common_name.name if plant.common_name else 'Plant' }}
{{ plant.common_name.name if plant.common_name else 'Unnamed' }}
{% if plant.scientific_name %}

{{ plant.scientific_name.name }}

{% endif %} View Details
{% endfor %}
{% else %}

No plants found yet. Add one now.

{% endif %}
Add New Plant
{% endblock %}