1👍
✅
One way is to set app_label
on each model of your app by defining an abstract model, like it’s done here. If you have an existing database, as a workaround, you can override db_table
on each model as suggested here.
Another option is to use awesome django-admin-tools module, that is very powerful at customizing your admin site. You can define your own DashboardModule
and customize links as you want.
Also see:
Hope that helps.
Source:stackexchange.com