i tried everything and getting frustrated, the main http page keeps saying:
"The install worked successfully! Congratulations!
View release notes for Django 5.1
You are seeing this page because DEBUG=True is in your settings file and you have not configured any URLs."
which i have already set it to false, and i changed the urls per the a.i's recommendation. I dont have a website for it yet. and one youtube video mentioned to have the settings.py say this for the host "ALLOWED_HOSTS = '*' " (changed from "ALLOWED_HOSTS = ['127.0.0.1', 'localhost']", I added the 404.html and 500.html templates. i''ve changed the view.py and urls.py code a quiet a few times and still nothing.
The only page that seems to work is the /admin/ page, that works perfectly, but the main page or the others dont work.
for the other pages like /notes/ etc gives me this error code.
"Page not found (404)
Request Method: GET
Request URL: http://127.0.0.1:8000/notes/
Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order:
admin/
The current path, notes/, didn’t match any of these.
You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page."
Have you encountered this issue? and how were you able to resolve it?