简体   繁体   English

从 DJANGO JAZZMIN 管理面板的右侧边栏中删除 AUTH 用户

[英]Remove AUTH user from right sidebar in DJANGO JAZZMIN admin panel

enter image description here在此处输入图像描述

Hello there!你好呀!

I want to remove Auth user from left side bar as show in picture above.我想从左侧栏中删除 Auth 用户,如上图所示。 Is it possible?可能吗?

I made this with css only:我只用 css 做了这个:

  1. Create a file: your-static-folder/css/custom-theme.css创建文件: your-static-folder/css/custom-theme.css
  2. Put this style:把这种风格:
.user-panel {
    display: none !important;
}
  1. In your settings.py, add:在您的 settings.py 中,添加:
JAZZMIN_SETTINGS = {
    ...
    "custom_css": 'css/custom-theme.css',
    ...
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM