I have a model which contains created_at
DateTimeField. I want to filter the model to get all object created on this day, month till now.
For Example : Date = 21/06/2016 Now I want to get all objects created on 21/06 till now irrespective of year.
Edit: To be precise, I have model which stores Date of Birth of Users. I want to get all the users who were born on this day.
I tried using the __range, __gte, __month & __day. This things did not work.