I have a model with field \"created_at\", and I have a list of dates. So, I want to get all the models that are created in the date range. How ?
I know that we ca
You can combine date and range field lookups:
queryset.filter(created_at__date__range=(start_date, end_date))