{% extends 'core_ui/base.html' %} {% block title %}View Entries – Nature In Pots{% endblock %} {% block content %}
Statistics
Your plants
{{ stats.user_plants }}
Your images
{{ stats.user_images }}
Total plants
{{ stats.total_plants }}
Total images
{{ stats.total_images }}

View Entries

Export My Data
Search
{% for plant in plants %}
{% set featured = plant.featured_media %} {% if not featured and plant.media %} {% set featured = plant.media[0] %} {% endif %} {# pick featured → first media if no explicit featured #} {% set featured = plant.featured_media %} {% if not featured and plant.media %} {% set featured = plant.media[0] %} {% endif %} Image for {{ plant.common_name.name }}
{{ plant.common_name.name }}
{{ plant.uuid }}

Type: {{ plant.plant_type }}

Scientific Name: {{ plant.scientific_name.name }}

{% if plant.mother_uuid %}

Mother: {{ plant.mother_uuid }}

{% endif %}
{% endfor %}
{% endblock %}