SP/web2py/applications/examples/views/template_examples/test_for.html
Saturneic 064f602b1a Add.
2018-10-25 23:33:13 +08:00

8 lines
131 B
HTML

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