I am making a Satchmo site and I want to add models that don't currently exist. These new models all appear under the app that they are defined in. This is fine for programmers, but I want the client might not understand why the the menu lists "Store Map" under "Local Site" and not under "Shop". Is there any way to modify which app a model appears under in the admin index?
Asked
Active
Viewed 96 times
1 Answers
3
You can change the app_label
attribute in the model's meta:
class Meta:
app_label = 'my_app'

mipadi
- 398,885
- 90
- 523
- 479
-
Actually, south apparently doesn't care fro that. I would have to run a schemamigration on the third party code which is what I'm trying to avoid. – chriscauley Dec 15 '11 at 23:19