Can someone explain to me why the following filters are not working at the month and day level? Filtering by year seems to work, but not the other two.
>
Your syntax is incorrect. It should be:
Clicks.objects.filter(created__month=2)
(you left off the 'objects' manager)