0

I have project, where i am utilizing an imported project, but I do not want the imported project's sections appearing in the automatic admin portal. is there away to override a projects adminConfig via configuration/code?

Nathan Tregillus
  • 6,006
  • 3
  • 52
  • 91

1 Answers1

2

Looks like you want admin.site.unregister(Model). Just add that in any admin.py file, import the Models from the project you're using, and then unregister them from the admin interface.

Jens Astrup
  • 2,415
  • 2
  • 14
  • 20