I want to remove some table or section form my django admin.
for example: i install summernote package who created attachment table in my admin. i dont want to show this table in admin (see in below screenshot)

You can unregister default models in admin.py of your app by using unregister.
from django.contrib import admin
from django_summernote.models import Attachment
admin.site.unregister(Attachment)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With