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

View Entries

{# ── Import / Export / Stats & Filters / View Toggle ───────────────────── #}
{# LEFT: Import/Export + Stats toggles #} {# RIGHT: filter form + view toggle #}
Search
{# preserve current view so Apply doesn’t reset it #}
Statistics
Your plants
{{ stats.user_plants }}
Your images
{{ stats.user_images }}
Total plants
{{ stats.total_plants }}
Total images
{{ stats.total_images }}
{# ── Results (list vs grid) ──────────────────────────────────────────── #} {% if view_mode=='list' %}
{% for plant in plants %}
{%- set f = (plant.media_items|selectattr('featured')|first) or (plant.media_items|first) -%} Image for {{ plant.common_name.name }}
{{ plant.common_name.name }}
{{ plant.uuid }}
{{ plant.plant_type }}
{% endfor %}
{% else %}
{% for plant in plants %}
{%- set f = (plant.media_items|selectattr('featured')|first) or (plant.media_items|first) -%} Image for {{ plant.common_name.name }}
{% endfor %}
{% endif %} {# ── Pagination ─────────────────────────────────────────────────────── #} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}