Page not found (404)

Request Method: GET
Request URL: http://www.frontdesign.se/newsupdate_CHANGING_CUPBOARD.htm

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

  1. ^admin/
  2. (?P<slug>[\w-]+)-project$ [name='project-detail']
  3. (?P<slug>[\w-]+)-news [name='news-detail']
  4. (?P<slug>[\w-]+)-projects$ [name='project-by-tag']
  5. projects-for-(?P<slug>[\w-]+) [name='project-for-client']
  6. ^news/$ [name='news']
  7. ^about/$ [name='about']
  8. ^$ [name='featured']
  9. ^featured/(?P<size>[\w-]+) [name='featured-items']
  10. ^projects/$ [name='home']
  11. ^media\/(?P<path>.*)$
  12. ^static\/(?P<path>.*)$

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