On 30 Mar 2007, at 2:32 am, James Bennett wrote:
> > On 3/29/07, Rob Hudson <[EMAIL PROTECTED]> wrote: >> I can't think of a way to account for "up to last 3 years" and "up to >> the next 5 years" or variation thereof. > > paid_up_until = models.DateField() > > Then use Python's standard 'datetime.timedelta' to handle offets; > e.g., if a member pays up for the next three years: > > p = user.get_profile() > p.paid_up_until += datetime.timedelta(days=3*365) > p.save() One of the things that annoys me about datetime is that it doesn't handle leap years properly. However, if you use python-dateutil[1] it has a relativedelta so you can do things like: >>> datetime.date.today()+relativedelta(years=+3) datetime.date(2010, 3, 30) .. which will take into account leap years too. -- David Reynolds [EMAIL PROTECTED] --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---