bloombase/plants/views/pruning.py
Stephan Kerkman c7a9699acc feat: plant list with HTMX live search and indoor/outdoor filter
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-28 10:01:15 +02:00

8 lines
238 B
Python

from datetime import date
from django.shortcuts import render
from plants.models import Plant
from plants.utils.pruning import pruning_status
def pruning_calendar(request):
return render(request, 'plants/pruning_calendar.html', {})