[web2py] Re: AppReport using web2py view.

2011-10-27 Thread Paolo Caruccio
I have done it this way (code abstract not tested): ### model db.define_table('t_persons', Field('f_surname', type='string', notnull=True, label=T('Surname'), length=32), Field('f_name', type='string', notnull=True, label=T('Name'), length=32), ) ### controller def myreport(): persons =

[web2py] Re: AppReport using web2py view.

2011-10-27 Thread annet
Hi Paolo, Thanks for your reply, the code you provided works, I'll convert it into my own app, hope that works too. Kind regards, Annet.