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

9 lines
119 B
HTML
Raw Normal View History

2018-10-25 15:33:07 +00:00
{{extend 'layout.html'}}
<h1>Try... except</h1>
{{try:}}
<h2>a={{=1/0}}</h2>
{{except:}}
infinity</h2>
{{pass}}