Example #1
0
File: ehlou.py Project: pjod/pyl
 def index(self):
     # Return a rendered template
     #return render('/ehlou.mako')
     # or, return a string
     response.content_type = 'text/html'
     #return 'Hello from the index() action!'
     c.name = "blablabla"
     return render('pierwszy.mako')
Example #2
0
File: ehlou.py Project: pjod/pyl
 def dupa(self):
     return render('/ehlou.mako')
Example #3
0
File: ehlou.py Project: pjod/pyl
 def create(self):
     c.login = request.POST['login']
     c.email = request.POST['email']
     c.password = request.POST['password']
     c.password_confirmation = request.POST['password_confirmation']
     return render('create.mako')
Example #4
0
File: ehlou.py Project: pjod/pyl
 def register(self):
     return render('register.mako')