{{extend 'layout.html'}} {{block header}}

/{{=request.application}}/{{=request.controller}}/{{=request.function}}

{{end}}
{{if 'message' in globals():}}

{{=message}}

{{=T('How did you get here?')}}

  1. {{=T('You are successfully running web2py')}}
  2. {{=XML(T('You visited the url %s', A(request.env.path_info,_href=request.env.path_info)))}}
  3. {{=XML(T('Which called the function %s located in the file %s', (A(request.function+'()',_href='#'), A('web2py/applications/%(application)s/controllers/%(controller)s.py' % request, _href=URL('admin','default','peek', args=(request.application,'controllers',request.controller+'.py'))))))}}
  4. {{=XML(T('The output of the file is a dictionary that was rendered by the view %s', A('web2py/applications/%(application)s/views/%(controller)s/index.html' % request, _href=URL('admin','default','peek',args=(request.application,'views',request.controller,'index.html')))))}}
  5. {{=T('You can modify this application and adapt it to your needs')}}
{{elif 'content' in globals():}} {{=content}} {{else:}} {{=BEAUTIFY(response._vars)}} {{pass}}