Page not found (404)

Request Method: GET
Request URL: http://enneagram-app.appspot.com/default.htm

Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order:

  1. [name='index']
  2. about/ [name='about']
  3. 3self/ [name='3self']
  4. 9types/ [name='9types']
  5. ^type[1-9]{1}/ [name='type']
  6. quest/ [name='quest']
  7. figure/ [name='figure']
  8. ^static/(?P<path>.*)$

The current path, default.htm, 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.