Is it possible to customise the class names shown in the nav sidebar, e.g. with short description? The reason for this is to translate English class names into another language.
It it also possible to subsume items to a section with a headline. E.g. to display street, address, city and country in structured way.
You could set the verbose_name attribute on the model to change what’s displayed in the admin for the model. You can also customize the order and organization of fields in the admin using the fields and fieldsets options in your ModelAdmin class.
Yes, verbose_name and fieldsets are working well for the admin site of the specific class. I want to customise the default nav sidebar ( AdminSite.enable_nav_sidebar, new in Django 3.1), that is display lefthanded on larger screens.