Hello, I have a form where the teacher can select the duedate for each of the problem he posts. Now I want to write a query to select all the problems for whic the due date has finished 1 or more than 1 day back.
Can anyone help please??? t = datetime.date.today() problems = db((db.problem.Duedate+datetime.timedelta(days=1)) <=t).select() -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

