Hi All, If I call "search" from a controller like: -
def client_search():
return dict(form=crud.search(db.client))
...and get the expected form, but using: -
def data():
return dict(form=crud())
...at: -
[app]/crm/data/search/client
...I get a 404.
Am I missing something?
--
Cheers,
Clam

