diff options
author | luxagraf <sng@luxagraf.net> | 2021-08-14 15:51:07 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2021-08-14 15:51:07 -0400 |
commit | 344767d63038c54587a74a18e5a4be0759511875 (patch) | |
tree | 64785870ecfed16aabfd46a0a95ef3a3a5fb6328 | |
parent | b445c09c8db139b2a35eda6109966b639b790b2b (diff) |
main: got rid of the terrible sidebar frame in django 3.1+
-rw-r--r-- | config/base_urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index bd2c730..6f40180 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -16,6 +16,7 @@ import utils.views from posts.views import PostRSSFeedView admin.autodiscover() +admin.site.enable_nav_sidebar = False sitemaps = { 'posts': PostSitemap, |