How to Change order of Modules listed in Side Bar of Django Admin

atr*_*ona 4 django django-models

See here are some modules in alphabetical order by default in the admin sidebar

Authentication and Authorization Data/Questions/Surveys/Website admin

在此输入图像描述

I want to rearrange the order how can I do that. ? I know in the Django world it does not matter. But our client requested to do that. So we need help with how we can do that.

小智 7

覆盖管理站点的默认顺序需要两个步骤。

首先是子类化Django 内置的 AdminSite。这将允许您根据需要自定义应用程序列表。

具体来说,您将需要重写AdminSite 子类的get_app_list方法。

根据 Django 文档的AdminSite.get_app_list方法:

应用程序和模型的列表按其名称的字母顺序排序。您可以重写此方法来更改管理索引页面上的默认顺序。