我为用户创建了用户配置文件并已添加
AUTH_PROFILE_MODULE = 'app.ModelName'
但是当用户成功登录时,他/她默认被重定向到/accounts/profile/。
如何改变这个?我希望他们去 /profile/ 并为他们创建了一个视图。
def Profile(request):
'''
profile view
'''
return render(request,'profile.html')
我为用户创建了用户配置文件并已添加
AUTH_PROFILE_MODULE = 'app.ModelName'
但是当用户成功登录时,他/她默认被重定向到/accounts/profile/。
如何改变这个?我希望他们去 /profile/ 并为他们创建了一个视图。
def Profile(request):
'''
profile view
'''
return render(request,'profile.html')