From dc05bbfc4e021c297d6449bc397df24b4110468a Mon Sep 17 00:00:00 2001 From: awhileback <84097090+awhileback@users.noreply.github.com> Date: Wed, 13 Oct 2021 17:14:40 -0500 Subject: [PATCH 1/2] fix dark theme, replace with v3.1 light theme --- backend/templates/admin/base.html | 60 +++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 backend/templates/admin/base.html diff --git a/backend/templates/admin/base.html b/backend/templates/admin/base.html new file mode 100644 index 00000000..c51a69d7 --- /dev/null +++ b/backend/templates/admin/base.html @@ -0,0 +1,60 @@ +{% extends 'admin/base.html' %} + +{% block extrahead %}{{ block.super }} + +{% endblock %} From 8768c8f453cb193b15dd82857cfad2e4b0cc1a1c Mon Sep 17 00:00:00 2001 From: awhileback <84097090+awhileback@users.noreply.github.com> Date: Wed, 13 Oct 2021 17:15:48 -0500 Subject: [PATCH 2/2] Update requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8955a971..b4e2dcf5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -django<3.2 # 3.2 has dark admin theme which looks bad in custom django CMS admin views +django>=3.2,<3.3 dj-database-url==0.5.0 django-storage-url==0.5.0 whitenoise==5.2.0