I'm getting this error:
Page not found (404)
Request Method: GET
Request URL: http://127.0.0.1:8000/
Using the URLconf defined in sitaram.urls, Django tried these URL patterns, in this order:
members/ [name='members']
admin/
The empty path 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.
How can I fix it?
Well the error is quite clear, you try to access
http://127.0.0.1:8000/, but there is nopathin yoururls.pythat matches this. You can visithttp://127.0.0.1:8000/members/, orhttp://127.0.0.1:8000/admin/given these point to views and are not just includes, but you can not point to the root directly, since you did not define such path.