sansjoe
sansjoe

Reputation: 282

With all the easy Django utilities, tools, configs, settings, etc. is there REALLY no easy way to define the name of a custom App in Admin?

How can I make LadyGagaApp into "Lady Gaga App" when displayed in Admin. Option #1 is to explain how to make this happen in the definition of the app, or in settings, or in init, etc. Option #2 is to point me to the admin template page where this can be overridden with an example.

Many thanks all.

/Joe

Upvotes: 2

Views: 132

Answers (3)

diegueus9
diegueus9

Reputation: 31542

I think this may work:

http://packages.python.org/django-admin-tools/0.3.0/index.html

Upvotes: 0

Manoj Govindan
Manoj Govindan

Reputation: 74715

This is not possible right now. There is a Django ticket open for this.

Upvotes: 1

afkbowflexin
afkbowflexin

Reputation: 4089

MYYN is right, open the class "Meta" inside of your model, and set "verbose_name" to "Lady Gaga App."

Upvotes: 0

Related Questions