[Answered ]-Django – Using month from datetime in model filter

1👍

You could try this:

Watch.objects.filter(date__month=now.month).order_by('-day')

Have a look at the QuerySet API Reference

Leave a comment