Hi, I want to compare dates in my db while ignoring the year field. Lets say I have a birthday field and want to find upcoming birthdays in the next one week. How can I achieve this? If I try-
last_date = datetime.now().date() + timedelta(days=7) users = User.objects.filter(birthday__day__lte = last_date.day) it throws an error that it can't resolve birthday__day into field. The exact comparison i.e. birthday__day=some_day works though. Thanks, Ram --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---