d-demirci / django-adminlte3

AdminLTE Templates, Template Tags, and Admin Theme for Django
https://django-adminlte3.herokuapp.com/admin
Other
244 stars 111 forks source link

Logout Not woking in Django Admin #33

Open yashraj077 opened 3 years ago

yashraj077 commented 3 years ago

Django Admin Logout is not working

redirecting to https://localhost/logout/ instead of https://localhost/admin/logout/

BismarkCT commented 2 years ago

I had to add a route in default url.py.

from django.shortcuts import redirect from django.contrib import admin from django.urls import path

urlpatterns = [ path("admin/", admin.site.urls), path("logout/", lambda request: redirect("/admin/logout", permanent=False)), ]

nuresh commented 1 month ago

i have tried this from django.shortcuts import redirect from django.contrib import admin from django.urls import path

urlpatterns = [ path("admin/", admin.site.urls), path("logout/", lambda request: redirect("/admin/logout", permanent=False)), ]

but for me it is still not working. Screenshot 2024-05-29 111654