I've created superuser and I've also ran the server yet it keeps showing the django "install worked successfully" page. Please what can I do?
CodePudding user response:
For standard installation the admin site path is /admin
so append that after your URL where you see "install worked successfully" page.
CodePudding user response:
Yes, you need to go to http://127.0.0.1/8000/admin/
.
For templates, set default route in project's urls.py as:
urlpatterns=[
path('',include("any_app_name.urls"))
]