Page not found (404)

Request Method: GET
Request URL: http://davismillandcabinet.com/about/

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

  1. ^$ [name='home']
  2. ^work-gallery$ [name='work-gallery']
  3. ^work-gallery/(?P<job_id>[0-9]+) [name='work-gallery-job']
  4. ^about$ [name='about']
  5. ^beginnings [name='beginnings']
  6. ^craftsmanship [name='craftsmanship']
  7. ^sustainability [name='sustainability']
  8. ^materials [name='materials']
  9. ^finishes [name='finishes']
  10. ^hardwoods [name='hardwoods']
  11. ^laminates [name='laminates']
  12. ^dealers$ [name='dealers']
  13. ^gallery$ [name='gallery']
  14. ^job [name='job']
  15. ^darlington [name='darlington']
  16. ^cedarave [name='cedarave']
  17. ^login/$ [name='login']
  18. ^logout$ [name='logout']
  19. ^admin/
  20. ^media/(?P<path>.*)$

The current path, about/, 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.