Search code examples
pythondjangoadmin

Django admin panel logout functionality


Is there any way to logout from all devices where I have logged in as admin in Django admin panel? The site has already been deployed to heroku server


Solution

  • you can manually delete all sessions you have in your database.

    from django.contrib.sessions.models import Session
    Session.objects.delete()