Re: [web2py] How to use SELECT Tag (HTML HELP) to print out a list

2011-12-28 Thread Bruno Rocha
*SELECT(*[OPTION(i) for i in ['a', 'b', 'c']])* On Thu, Dec 29, 2011 at 4:52 AM, Dan wrote: > > {{for i in ['a','b','c']:}} > {{=i}} > {{pass}} > > -- Bruno Rocha [http://rochacbruno.com.br]

[web2py] How to use SELECT Tag (HTML HELP) to print out a list

2011-12-28 Thread Dan
Hi everyone, Happy holidays first. How do I use the the Web2Python HTML Helper "=SELECT" Tag to print out a select with all contents in a list. like following one {{for i in ['a','b','c']:}} {{=i}} {{pass}} Many thanks.