I am trying to start a Django application without the Django admin panel, because I do not need it right now, but I get the exception value:
Put 'django.contrib.admin' in the INSTALLED_APPS setting to use the admin application.
Can I run the application without django.contrib.admin? Even if you go to mine localhost:8000, do you need to add django.contrib.adminto your installed_apps?
django.contrib.admin
localhost:8000
django.contrib.admin is just a Django app.
Delete or comment django.contrib.adminout INSTALLED_APPSin the file settings.py.
INSTALLED_APPS
settings.py
from django.contrib import admin admin.py', urls.py , .
from django.contrib import admin
admin.py'
urls.py
url(r'^admin/', include(admin.site.urls) urlpatterns urls.py.
url(r'^admin/', include(admin.site.urls)
urlpatterns
.
#url(r'^admin/', include(admin.site.urls)), urls.py, .
#url(r'^admin/', include(admin.site.urls)),
Source: https://habr.com/ru/post/1613694/More articles:How much information should be done in the JWT payload? - node.jshttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1613690/keeping-wpf-groupitems-together-in-itemscontrol&usg=ALkJrhgB8ydXcjhXuc5JBWubkyVZQPozFAC ++ library random number generators in realistic programs - c ++not normal 1 PhantomJS unexpectedly crashed when running `ember test` on CI - ember.jsКак создать список имен файлов в локальном каталоге? - ansiblePassing an array with jquery to ColdFusion component - jsonOpenSSL and Trusted System Certifcates Certificates - c ++Error while extracting dockers: there is no space on the device - dockerHow to find out the size of a RethinkDB table? - rethinkdbAndroid Studio: InvalidVirtualFileAccessException trying to display XML layout - android-studioAll Articles