views:

11

answers:

1

I have a django model with a field Reminder_End_Date = models.DateField(). I have to filter all records of the model which have reminder date greater than todays date.

However when I try to use the following statement, it does not work:

now=datetime.date.today()
reminderlist=Reminder.objects.filter(Reminder_End_Date>now )

Can anyone tell how to go about this? Thanks in advance

+2  A: 

This is basic Django query syntax. See the documentation on making queries.

reminderlist = Reminder.objects.filter(Reminder_End_Date__gt=now )
Daniel Roseman