Hi All,Not sure if anyone else has worked through the CRUD URLs described in the book on p317, but the search URL described does not work: -
def client_search():
return dict(form=crud.search(db.client))
...works as expected, but using: -
def data():
return dict(form=crud())
...and visiting the URL indicated by the book: -
[app]/[controller]/data/search/client
...throws a 404.
I'm not sure if this is a bug, or if the book is incorrect?
--
Cheers,
Clam

