Drag the ☰ handle to re-nest. Changes save automatically.
{% if not areas_tree %}
No areas yet.
{% endif %}
{% for area in areas_tree recursive %}
☰{{ area.name }}
{% if area.children %}{{ area.children|length }} sub{% endif %}
{% set pc = plant_counts.get(area.id, 0) %}
{% if pc %}{{ pc }} plant{{ '' if pc == 1 else 's' }}{% endif %}