This is my request.
count = Attend.objects.filter(date = NULL).count()
This gives me the input date in the correct format error. I am trying to filter out a date set to null.
What am I doing?
count = Attend.objects.filter(date__isnull = True).count()