Django 3.1 | Admin page appearance issue

后端 未结 3 830
故里飘歌
故里飘歌 2020-12-30 03:01

Today I have updated Django to latest version 3.1.

But for some reason when the logged in to admin page, all I cans see is a weird looking admin page.

3条回答
  •  渐次进展
    2020-12-30 03:45

    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
    

    Reference:

    1. https://docs.djangoproject.com/en/3.1/releases/3.1/#django-contrib-admin
    2. https://docs.djangoproject.com/en/3.1/ref/contrib/admin/#django.contrib.admin.AdminSite.enable_nav_sidebar

提交回复
热议问题