【问题标题】:Remove AUTH user from right sidebar in DJANGO JAZZMIN admin panel从 DJANGO JAZZMIN 管理面板的右侧边栏中删除 AUTH 用户
【发布时间】:2022-08-15 04:27:51
【问题描述】:

enter image description here

你好呀!

我想从左侧栏中删除 Auth 用户,如上图所示。可能吗?

    标签: python django django-models django-rest-framework django-admin


    【解决方案1】:

    我只用 css 做了这个:

    1. 创建文件:你的静态文件夹/css/custom-theme.css
    2. 把这个样式:
      .user-panel {
          display: none !important;
      }
      
      1. 在您的 settings.py 中,添加:
      JAZZMIN_SETTINGS = {
          ...
          "custom_css": 'css/custom-theme.css',
          ...
      }
      

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-12-28
      • 2021-05-30
      • 1970-01-01
      相关资源
      最近更新 更多