英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论