{% extends "plants/base.html" %} {% block title %}Pruning Calendar — BloomBase{% endblock %} {% block content %}
✂️ Pruning Calendar
{% if overdue %}
⚠ Overdue
{% for plant in overdue %}
{{ plant.name }}
{{ plant.location }}
Overdue
{% endfor %}
{% endif %} {% if due_this_month %}
This month — {{ month_name }}
{% for plant in due_this_month %}
{{ plant.name }}
{{ plant.location }}
This month
{% endfor %}
{% endif %} {% if next_month_plants %}
Next — {{ next_month_name }}
{% for plant in next_month_plants %}
{{ plant.name }}
{{ plant.location }}
{{ next_month_name }}
{% endfor %}
{% endif %} {% if later %}
Later this year ({{ later|length }})
{% for plant in later %}
{{ plant.name }}
{{ plant.location }} · Months: {{ plant.pruning_months|join:", " }}
{% endfor %}
{% endif %} {% if not overdue and not due_this_month and not next_month_plants and not later %}

No pruning schedules set. Add pruning months to your plants.

{% endif %} {% endblock %}