How to delete authentication and authorization for django admin customization

as shown in the picture, how can I delete it if I don"t want to see it in the admin sidebar?
seems to exist by default.
clipboard.png

Mar.03,2021

add the following code

to admin.py
from django.contrib.auth.models import Group, User

admin.site.unregister(Group)
admin.site.unregister(User)
Menu