本文整理汇总了Python中accounts.models.UserProfile.branch方法的典型用法代码示例。如果您正苦于以下问题:Python UserProfile.branch方法的具体用法?Python UserProfile.branch怎么用?Python UserProfile.branch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类accounts.models.UserProfile
的用法示例。
在下文中一共展示了UserProfile.branch方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: createBranchAdmin
# 需要导入模块: from accounts.models import UserProfile [as 别名]
# 或者: from accounts.models.UserProfile import branch [as 别名]
def createBranchAdmin():
user = User()
user.username = 'branchA'
user.first_name = 'A分部管理員'
user.set_password('branchA')
user.email = '[email protected]'
user.save()
userProfile = UserProfile()
userProfile.branch = Branch.objects.create(name='分部A', address='分部A', phone='0912345678')
userProfile.user = user
userProfile.save()
return user
示例2: createSuperuser
# 需要导入模块: from accounts.models import UserProfile [as 别名]
# 或者: from accounts.models.UserProfile import branch [as 别名]
def createSuperuser():
admin = User()
admin.username = 'admin'
admin.first_name = '管理員'
admin.set_password('admin')
admin.email = '[email protected]'
admin.is_staff = True
admin.is_superuser = True
admin.save()
userProfile = UserProfile()
userProfile.branch = Branch.objects.create(name='總部', address='XX', phone='0912345678')
userProfile.user = admin
userProfile.save()
return admin