从Django UI中删除侧边栏。

huangapple go评论62阅读模式
英文:

Remove sidebar from django UI

问题

每当用户点击侧边栏列表中显示的模型时,应导航到该模型的页面,并将侧边栏收起。如何实现这一目标?

英文:

Whenever the user clicks on models that are shown in the sidebar list, should navigate to that model's page and the sidebar should get removed(collapse). How can I achieve this?

答案1

得分: 1

在Django项目的urls.py中,只需添加下面这行代码,然后在选择模型后侧边导航栏就会被移除。

admin.site.enable_nav_sidebar = False

英文:

In django projects urls.py just added the below line, then side nav bar gets removed once a model is selected.

admin.site.enable_nav_sidebar = False

huangapple
  • 本文由 发表于 2023年7月31日 20:52:18
  • 转载请务必保留本文链接:https://go.coder-hub.com/76803825.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定