8 lines
238 B
Python
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', {})
|