I have read this one, but I am using Django 1.5 and my urls.py do looks like this:
url(r'^admin/$', include(admin.site.urls)),
since there is something wrong about the logout, I will show you that I have a app accounts,and in the root urls.py it looks like:
url(r'^accounts/', include('accounts.urls', namespace="accounts")),
and in accounts/urls.py,there is something about logout, it looks like this:
url(r'^logout/$', views.logout, name='logout'),
so can any one tell me how can this cause this bug? Thank you very much.