SP/web2py/applications/examples/views/template_examples/test_for.html

8 lines
131 B
HTML
Raw Normal View History

2018-10-25 15:33:07 +00:00
{{extend 'layout.html'}}
<h1>For loop</h1>
{{for number in ['one','two','three']:}}
<h2>{{=number.capitalize()}}</h2>
{{pass}}