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
This is basic Django query syntax. See the documentation on making queries.
reminderlist = Reminder.objects.filter(Reminder_End_Date__gt=now )
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With