Files
web2py/applications/examples/views/template_examples/test_if.html
T
Massimo Di Pierro e9fadbc40b added tagcloud
2011-11-23 01:14:19 -06:00

12 lines
140 B
HTML

{{extend 'layout.html'}}
<h1>If statement</h1>
{{
a=10
}}
{{if a%2==0:}}
<h2>{{=a}} is even</h2>
{{else:}}
<h2>{{=a}} is odd</h2>
{{pass}}