Hello?我試圖在django登錄後將特定用戶重定向到自定義頁面。管理員將被定向到他們通常的管理界面,而這個特定的用戶將轉到他們自己的自定義頁面。 我已經在我的意見登錄後將用戶重定向到基於用戶名的自定義url Django
def custLogin(request):
if request.user.username == '***':
return HttpResponseRedirect('http://********************.html')
else:
return login(request,template_name='login.html')
我已經指出在urls.py賬戶/登錄網址custLogin如下
(r'^accounts/login/', custLogin),
編寫這些代碼並把它放在我卻不斷收到錯誤
Caught NoReverseMatch while rendering: Reverse for 'django.contrib.auth.views.login' with arguments '()' and keyword arguments '{}' not found.
任何指針?