Here is the problem I am facing with the Django Authenetication
views
from django.contrib.auth import logout
def logout_user(request):
""" logout the user """ logout(request) return HttpResponseRedirect('/qioness/connect/')
urls:
url(r'^userlogout/$',logout_user),
worked 4 me