Is there a way to group models in the django admin interface?
Currently, I have an application with requests with the following models displayed on the admin site:
**Requests** Divisions Hardware Requests Hardware Types Requests Software Requests Software Types
I would like departments, software requests, and hardware requests to be grouped separately in the Types group. I know that I can override and hardcode the admin / index.html and base_site.html, but this seems pretty confusing just to indicate grouping.
Is there anything I can add to the Meta class to indicate the name of the group?
The only way I have found so far to achieve what I want is to move the models to the new application in the queries ("queries.Types"), but again, it doesn't seem like this is the "right way".
django django-models django-admin
Morchuboo
source share