> date is coming up, say two weeks away. So, how would I say something > like > > if sponsor.period_end < now + 2 weeks: > > Or, alternately, just filter: > Sponsor.objects.filter(period_end__gte=datetime.datetime.now() + 2 > weeks)
My first thought would be to try comparing your value to: datetime.datetime.now() + datetime.timedelta(weeks=2) which would be how I'd do it outside of Django. I'm away from my Django box, so I can't test that it doesn't break in such a context. Granted, it doesn't do funky things like weekends-vs-weekdays or take holidays into such a consideration, but if you just want two weeks after the given date, the above should do. -tkc --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---