diff --git a/django/contrib/auth/views.py b/django/contrib/auth/views.py index eb9bc1650d..8cf21c0d52 100644 --- a/django/contrib/auth/views.py +++ b/django/contrib/auth/views.py @@ -36,7 +36,7 @@ def logout(request, next_page=None): try: del request.session[SESSION_KEY] except KeyError: - return render_to_response('registration/logged_out', context_instance=RequestContext(request)) + return render_to_response('registration/logged_out', {'title': 'Logged out'}, context_instance=RequestContext(request)) else: # Redirect to this page until the session has been cleared. return HttpResponseRedirect(next_page or request.path)