The Python Oracle

Django Admin Sidebar Bug

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Switch On Looping

--

Chapters
00:00 Django Admin Sidebar Bug
00:37 Accepted Answer Score 7
00:54 Thank you

--

Full question
https://stackoverflow.com/questions/6401...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#python #css #django #admin

#avk47



ACCEPTED ANSWER

Score 7


In your projects' root urls.py file, simply add the below code to disable the new sidebar feature.

from django.contrib import admin

admin.autodiscover()
admin.site.enable_nav_sidebar = False

Thanks to The Go company from this link.