{% extends "base.html" %} {% block title %}Unplanted{% endblock %} {% block content %}

Unplanted plants

Plants you've bought (or want to buy) but haven't put in the ground yet. Use this for layout planning — drop them into an area in layout mode to see where they'd fit, then hit Mark as planted when you actually plant them.

Unplanted {{ unplanted|length }} Ideas {{ ideas|length }}

+ Add {% if tab == 'idea' %}an idea{% else %}an unplanted plant{% endif %}

{%- set current = unplanted if tab == 'unplanted' else ideas -%}

{% if tab == 'unplanted' %}Unplanted{% else %}Ideas{% endif %} list ({{ current|length }})

{% if not current %}

Nothing here yet. {% if tab == 'unplanted' %} Add plants above that you've purchased or seeded but haven't planted in the ground yet. {% else %} Add idea plants above for future planning — these don't need to physically exist. {% endif %}

{% else %}
{% for p in current %}
{{ p.quantity or '?' }}× {% if p.variety_name %}{{ p.variety_name }}{% endif %} {% if p.species_name %}{{ p.species_name }}{% endif %} {% if not p.species_name and not p.variety_name %}untyped{% endif %} {% if p.area_name %} in {{ p.area_name }} {% else %} not in any area {% endif %}
{% if p.notes %}
{{ p.notes }}
{% endif %}
Open {% if p.status == 'idea' %}
{% else %}
{% endif %}
{% endfor %}
{% endif %}
{# Mark-as-planted dialog — opens via JS, lets user pick existing planting or create a new one on the spot. #}

Mark as planted

{% endblock %} {% block scripts %} {% endblock %}