I read the document about django tutorial. Now I want to read my html and display it. So I start a project and start a app myapp_page. The folder structure is blow.
I render my html file in the views. There is "Hello world" in this html file.
I set the path in the urls.py.
And I add the folder path in the settings.py.
But the html didn't show in the 127.0.0.1:8000/myapp_page/
How to display my custom html file?
How does the django manage the path?
I am confuse.



