On Dec 22, 12:30 pm, Aldo <marcwar...@gmail.com> wrote:
> Hi folks,
>
> Simple enough problem but cant find the functionality - if it exists.
>
> this_week = datetime.date.today() - timedelta(7)
> Cars.objects.filter(created_date>this_week)
>
> I basically want to find all cars that were created in the last 7
> days. I have seen there are things for the month and year
> created_date__year = this_week.year
> created_date__month = this_week.month
> What i want is
> created_date__week = this_week.week
>
> Is there any simple way of doing this.

Can you not just do:
Cars.objects.filter(created_date__gte=this_week)

--
DR
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to