django-cms / djangocms-admin-style

django CMS Admin Style is a Django Theme tailored to the needs of django CMS.
http://www.django-cms.org/
Other
410 stars 116 forks source link

Django 3.1+ sidebar issues in django CMS modals #431

Open yakky opened 3 years ago

yakky commented 3 years ago

Django 3.1 sidebar is visible in most django cms modals (the one generated by the toolbars)

See examples below:

Screenshot_20201221_123448

petrklus commented 2 years ago

I know this is not a direct solution but I've disabled the new app sidebar throughout my admin site via the following nippet:

from django.contrib.admin import AdminSite

class CNKAdminSite(AdminSite):
    site_header = 'Site administration'
    enable_nav_sidebar = False

admin_site = CNKAdminSite(name='cnkadmin')

Perhaps would be helpful to anyone who stumbles upon this.