我在django中有一个应用other
。我在此应用中有PaymentMethods
,Currencies
,ReasonCodes
,DeviceInfo
等模型。我想在不同的标题下显示几个模型。我怎样才能做到这一点?我们必须使用图书馆吗?尝试使用django-modeladmin-reorder
库。但它不起作用。注意:我使用Django 1.8和库django-material
作为管理界面。
例如我想要的东西。 Other
是我的应用名称。它下面有4个型号。
PaymentMethods
,
Currencies
,
ReasonCodes
,
DeviceInfo
现在,在默认管理员中,所有4个模型都显示在other
app。
我需要这样显示,
other
的详细名称将是'付款'在这个我想要的
PaymentMethods
,
Currencies
和另一个名为'设备信息'在这之下,
ReasonCodes
,
DeviceInfo
应该显示。
答案 0 :(得分:0)
您可以覆盖admin/base_site.html
并编写自己的{% block sidenav_header %}