File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -18,3 +18,5 @@ db.sqlite3
18
18
._ *
19
19
.Spotlight-V100
20
20
.Trashes
21
+
22
+ .idea /
Original file line number Diff line number Diff line change 10
10
if settings .DEBUG :
11
11
urlpatterns .extend (static (settings .MEDIA_URL , document_root = settings .MEDIA_ROOT ))
12
12
13
- urlpatterns .append (path ('' , include ('cms.urls' )))
13
+ urlpatterns .append (path ('' , include ('cms.urls' )))
14
+
15
+ # the new django admin sidebar is bad UX in django CMS custom admin views.
16
+ admin .site .enable_nav_sidebar = False
Original file line number Diff line number Diff line change 1
- django >= 3.1 ,< 3.2
1
+ django >= 3.1 ,< 3.2 # 3.2 has dark admin theme which looks bad in custom django CMS admin views
2
2
dj-database-url == 0.5.0
3
3
django-storage-url == 0.5.0
4
4
whitenoise == 5.2.0
@@ -9,8 +9,7 @@ psycopg2==2.8.5
9
9
uwsgi == 2.0.19.1
10
10
11
11
# key requirements for django CMS
12
- django-cms >= 3.8 ,< 3.9
13
- django-treebeard >= 4.0 ,< 5.0
12
+ django-cms < 4
14
13
django-classy-tags >= 2.0
15
14
django-sekizai >= 2.0
16
15
six
You can’t perform that action at this time.
0 commit comments