[Django]-How to display multi-word app names properly (i.e. with spaces) in Django admin?

1đź‘Ť

âś…

unfortunately, afik, django doesn’t really support the notion of “verbose names” for apps. The admin just does app_name.title(). So to get want you want, some more trickery is needed. Haven’t tried (never needed this) but this solution may just work.

👤second

0đź‘Ť

I know this thread is super old but it was the first one I came across when searching for this. There is a way to use verbose_name as you can find in the answer here:

Can you give a django app a verbose name for use through the admin

👤jAC

Leave a comment