{% extends "plants/base.html" %} {% block title %}Dashboard — PlantDB{% endblock %} {% block content %}
{{ today|date:"F Y" }}
{{ total_plants }}
Plants
{{ needs_pruning_count }}
Need pruning
{% if overdue or due_this_month %}
✂️ Needs attention
{% for plant in overdue %}
{{ plant.name }}
{{ plant.location }}
overdue
{% endfor %} {% for plant in due_this_month %}
{{ plant.name }}
{{ plant.location }}
this month
{% endfor %}
{% endif %}
+ Add a plant
{% endblock %}