[web2py] Re: limit the application for client user

2015-06-30 Thread 黄祥
if limit base on data stored in table and using SQLFORM.grid it can be use logic create = True if db.table.id < 100 else False editable = True if db.table.id < 100 else False best regards, stifan -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2

[web2py] Re: limit the application for client user

2014-01-01 Thread 黄祥
> > - compute any db i/o, check for usage limits and store as json > i still don't get it in this part, btw, thank you for your suggestions. best regards, stifan -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https:/

[web2py] Re: limit the application for client user

2014-01-01 Thread Alan Etkin
> > hi, > > is it possible to limit the application for client user? something > identical with trial version for client user, so the user can try the > application, test and use it for several time (1 month for example) or base > on table record (limit to 10/100 record per table). > if possibl