Example #1
0
File: main.py Project: zz2/betasend
 def GET(self):
     try:
         user = db_api.user_get(web.ctx.session.id)
     except orm_exc.NoResultFound:
         user = None
         print 'Warn: user is noe'
     return render.account(user=user)
Example #2
0
File: main.py Project: zz2/betasend
 def GET(self):
     user = db_api.user_get(web.ctx.session.id)
     return render.mailbox_add(user=user)
Example #3
0
File: main.py Project: zz2/betasend
 def GET(self):
     user = db_api.user_get(web.ctx.session.id)
     return render.domain_page(user=user)