コード例 #1
0
 def txn():
     code = gen_salt(20)
     language = i18n.get_locale()
     profile = Profile(user=user,
                       verification_code=code,
                       language=language)
     profile.put()
     return profile
コード例 #2
0
ファイル: handlers.py プロジェクト: tresacton/gae-shop
 def get_locale():
     return i18n.get_locale()
コード例 #3
0
 def get_locale():
     return i18n.get_locale()
コード例 #4
0
 def txn():
     code = gen_salt(20)
     language = i18n.get_locale()
     profile = Profile(user=user, verification_code=code, language=language)
     profile.put()
     return profile