Django 2.2 : Is there any way to remove app name from admin urls?

I am using Django Built-in Admin panel, is there any way to remove app name from urls?

If I want to access User listing, it redirects me to 27.0.0.1:8000/admin/auth/user/ can I make it 27.0.0.1:8000/admin/user/ without the app name auth ?

I have around 10 CRUD operations which consists on single Model, instead creating separate app for all, I have created single app named common . now all urls are followed by common i.e admin/common/country , admin/common/city , admin/common/settings …etc

Thanks,

AdminSite defines a get_urls() method. You’d need to reimplement this, but if you kept the url names the same, I’d imagine it would work.