本文整理汇总了Python中account.models.User.Phone方法的典型用法代码示例。如果您正苦于以下问题:Python User.Phone方法的具体用法?Python User.Phone怎么用?Python User.Phone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类account.models.User
的用法示例。
在下文中一共展示了User.Phone方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: process_request
# 需要导入模块: from account.models import User [as 别名]
# 或者: from account.models.User import Phone [as 别名]
def process_request(request):
form = CreateAccountForm()
if request.method == "POST":
form = CreateAccountForm(request.POST)
if form.is_valid():
# create the user here
u = User()
u.username = form.cleaned_data.get("username")
u.first_name = form.cleaned_data.get("first_name")
u.last_name = form.cleaned_data.get("last_name")
u.BirthDate = form.cleaned_data.get("BirthDate")
u.Phone = form.cleaned_data.get("Phone")
u.set_password(form.cleaned_data.get("password"))
u.save()
return HttpResponse(
"""
<script>
window.location.href = '/homepage/index/';
</script>
"""
)
template_vars = {"form": form}
return dmp_render_to_response(request, "createaccount.html", template_vars)