Example #1
0
 def get(self):
     viewhelper = ViewHelper(self.request)
     
     template_values = viewhelper.get_navigation_options()
     template_values.update(viewhelper.get_menu_options())
     template_values.update(viewhelper.get_placeholder_trips())
     
     path = os.path.join(os.path.dirname(__file__), '../../templates', 'help.html')
     self.response.out.write(template.render(path, template_values))