Files
web2py/applications/examples/views/template_examples/test_for.html
2011-12-05 11:39:42 -06:00

8 lines
131 B
HTML

{{extend 'layout.html'}}
<h1>For loop</h1>
{{for number in ['one','two','three']:}}
<h2>{{=number.capitalize()}}</h2>
{{pass}}