In a Django app the urls of the admin contains the app name, ex:
http://my.domain.com/admin/myapp/mymodel
How can I replace myapp
by another string (without modifying the actual app name of course)?
EDIT
My db already exists, so I can't use app_label
in my models' META
.
I just want to modify the app name displayed in the admin urls and the admin pages.