>
> # controllers\default.py 
> def index(): 
>     return dict(authed_users=SQLTABLE(db().select(db.auth_user.ALL))) 
>
> # views\default\index.html 
> {{if 'authed_users' in globals():}} 
> {{=T('Registered users:')}} 
> {{=authed_users}} 
>

This example does not show a form -- it shows a table with the results of a 
select.

Anthony 

-- 



Reply via email to