本文整理匯總了Python中account.models.UserProfile.birth方法的典型用法代碼示例。如果您正苦於以下問題:Python UserProfile.birth方法的具體用法?Python UserProfile.birth怎麽用?Python UserProfile.birth使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類account.models.UserProfile
的用法示例。
在下文中一共展示了UserProfile.birth方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: check_modify
# 需要導入模塊: from account.models import UserProfile [as 別名]
# 或者: from account.models.UserProfile import birth [as 別名]
def check_modify(request, form):
if not form.is_valid():
return False
try:
userobj = User.objects.get(username=form.cleaned_data['username'])
except User.DoesNotExist:
raise NoSuchUser
try:
profile = UserProfile.objects.get(user=userobj)
except UserProfile.DoesNotExist:
profile = UserProfile(user=userobj)
profile.birth = form.cleaned_data['birth']
if form.cleaned_data['password'] != form.cleaned_data['confirmed_password']:
return False
elif form.cleaned_data['password']:
userobj.set_password(form.cleaned_data['confirmed_password'])
userobj.save()
if form.cleaned_data['sex'] == 'm':
profile.sex = True
else:
profile.sex = False
profile.signature = form.cleaned_data['signature']
profile.save()
return True