Is there a way to get all objects with a date less than a month ago in django.
Something like:
items = Item.objects.filter(less than a month old).order_b
items = Item.objects.filter(created_date__gte=aMonthAgo)
Where aMonthAgo would be calculated by datetime and timedelta.