Home > Net >  I'm trying to open the admin website for my project but it isn't coming up, rather it show
I'm trying to open the admin website for my project but it isn't coming up, rather it show

Time:08-25

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"))
]
  • Related