{% extends "base.html" %} {% from '_featured_image.html' import featured_image_thumb %} {% from '_archive.html' import show_archived_toggle %} {% block title %}Plantings — Garden{% endblock %} {% block content %}
+ New Planting Unplanted → {{ total_plantings }} planting{{ '' if total_plantings == 1 else 's' }} {{ show_archived_toggle(show_archived, '/plantings') }} Years

Plantings

Plantings represent the act of putting plants in the ground. For planning before the spade comes out, use the Unplanted page — that's where you stage purchases, indoor seedlings, and ideas, then assign them to a planting when they go in the ground.

{% macro planting_card(p) %}
  • {{ featured_image_thumb(p.featured_image_path, p.name) }}
    {{ p.name }} {{ p.status or 'planted' }} {{ p.plant_count }} plant{{ '' if p.plant_count == 1 else 's' }} {% if p.is_archived %}Archived{% endif %}
    {% if p.notes %}
    {{ p.notes[:60] }}{{ '...' if p.notes|length > 60 else '' }}
    {% endif %}
  • {% endmacro %} {% if year_groups or no_year %} {% for year_val, plantings in year_groups %}

    {{ year_val }}

    {% endfor %} {% if no_year %}

    No year

    {% endif %} {% else %}

    No plantings yet. A planting groups plants together -- like "2026 Tomatoes" or "2023 Strawberry Starters".

    {% endif %} {% endblock %}