问题 When I try to logout from my django project, I get the following error: "maximum recursion depth exceeded while calling a Python object" Here is the url for the logout button: url(r'^logout', 'users.views.logout', name='logout'), And here is the view: from django.shortcuts import render from deck1.models import Card from django.template import RequestContext from django.shortcuts import render_to_response from django.http import HttpResponseRedirect, HttpResponse from django.contrib.auth