hi,
I do know whether somebody mention it, just a remind that there are typos in CRM
example,
def calendar():
......
tasks=db(db.task.created_by==auth.user.id)\
(db.task.start_time>=request.now).select()
.......
should be
tasks=db(db.task.created_by==auth.user.id)\
(db.task.start_time<=request.now).select()
.......
it's same typo in list_tasks action,
frank
--
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en.