I'm attempting to use Django to create a website builder. I have created a development webserver with "python manage.py runserver" and it worked initially. I created a Products app and added code in the views module and the url module under this app, whilst also mapping it to the parent url module using "path('products/', include('products.urls'))" but when I go back to the link produced by the server, it no longer works. I don't know what the problem is and how to fix it, as I didn't do anything different from the first time I tried this, and it worked briefly, before it stopped. I had to start a new project when this happened but I don't have time to keep starting over.
This worked a few days ago but the next day the runserver command wasn't working. I had to delete the project and start again and now I am running into the same problem and I don't know what to do