Is there a way to change the application label in the admin menu ? I just can't find how.
Asked
Active
Viewed 1,596 times
0
-
http://stackoverflow.com/a/3164163/455833 – San4ez May 18 '12 at 19:30
2 Answers
0
Check django-app-name-translation-in-admin. It overrides few django admin templates to allow translating application names. While not perfect way, it could be of help.

bmihelac
- 6,233
- 34
- 45
0
You can change the application label for a particular model using the app_label
attribute in a Meta
class:
class TestModel(models.Model):
... fields ...
class Meta:
app_label = "Your App Label Goes Here"
This only applies for this particular model, so if you want to change the app label for all models in an app, you will have to add this for each model.

Daniel Watkins
- 1,656
- 1
- 15
- 25