1
我想通過使用django的登出後重定向到主頁logout_then_login
函數描述在https://docs.djangoproject.com/en/1.5/topics/auth/default/但我想我沒有正確地傳遞url(我是相當新的到Django)django登錄後重定向到主頁
任何反饋是非常感謝。
主頁URL
url(r'^$', 'myfitgames.views.home', name='home'),
註銷URL
url(r'^accounts/logout/$', 'django.contrib.auth.views.logout_then_login(request,"/")', name='logout'),
工作太棒了!我很欣賞這些反饋。 – bbrooke