By default, in Django-admin there is Users, Groups, and Sites apps. How can I remove Groups and Sites?
I tried to remove admin.autodiscover() from root
admin.autodiscover()
If you got:
django.contrib.admin.sites.NotRegistered: The model Group is not registered
Then make sure that your INSTALLED_APPS in proper order like this:
enter code hereINSTALLED_APPS = ( # [1] Django apps 'django.contrib.auth', ... # [2] your custom apps 'anyproject.anytuff', )