14 lines
380 B
HTML
14 lines
380 B
HTML
|
{{extend 'layout.html'}}
|
||
|
{{"""
|
||
|
|
||
|
You should not modify this file.
|
||
|
It is used as default when a view is not provided for your controllers
|
||
|
|
||
|
"""}}
|
||
|
<h2>{{=' '.join(x.capitalize() for x in request.function.split('_'))}}</h2>
|
||
|
{{if len(response._vars)==1:}}
|
||
|
{{=BEAUTIFY(response._vars[next(iter(response._vars))])}}
|
||
|
{{elif len(response._vars)>1:}}
|
||
|
{{=BEAUTIFY(response._vars)}}
|
||
|
{{pass}}
|