{% extends "base.html" %} {% from '_archive.html' import show_archived_toggle %} {% block content %}
+ Add supply {{ supplies|length }} suppl{{ 'y' if supplies|length == 1 else 'ies' }} {{ show_archived_toggle(show_archived, '/inventory') }}

Supplies

{% if shopping %}

Shopping list

{% endif %}

On hand

{% if not supplies %}

No supplies tracked yet. Use "Add supply" to track fertilizer, soil, amendments, etc.

{% else %} {% for category, items in supplies_by_category.items() %}

{{ category }}

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