Page not found (404)

Request Method: GET
Request URL: http://shantellmartin.art/default.htm

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

  1. ^favicon\.ico$ [name='favicon']
  2. ^admin/
  3. ^control/api/
  4. ^control/
  5. ^control/
  6. ^ ^$ [name='index']
  7. ^ ^news/$ [name='news']
  8. ^ ^news/(?P<obj_url>\w+(?:-+\w+)*)/$ [name='news_item']
  9. ^ ^work/$ [name='projects']
  10. ^ ^work/(?P<obj_url>\w+(?:-+\w+)*)/$ [name='project_item']
  11. ^ ^info/$ [name='info']
  12. ^ ^info/work/(?P<obj_url>\w+(?:-+\w+)*)/$ [name='info_project_item']
  13. ^ ^info/news/(?P<obj_url>\w+(?:-+\w+)*)/$ [name='info_news_item']
  14. ^ ^404/$ [name='custom_404']
  15. ^ ^api/
  16. ^ ^sitemap.xml$ [name='sitemap']
  17. ^ ^robots\.txt$ [name='robots']
  18. ^media/(?P<path>.*)$

The current URL, 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.