[Solved]-Run django application without django.contrib.admin

20👍

django.contrib.admin is simply a Django app.

Remove or comment django.contrib.admin from INSTALLED_APPS in settings.py file.

Also remove or comment from django.contrib import admin from admin.py',urls.py and all the files having this import statement.

Remove url(r'^admin/', include(admin.site.urls) from urlpatterns in urls.py.

1👍

I have resolved this issue.

I had #url(r'^admin/', include(admin.site.urls)), in my urls.py which I just commented out.

👤python

Leave a comment