Page not found (404)

Request Method: GET
Request URL: http://ozcs.com.au/showroom/

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

  1. admin/
  2. ^$
  3. ^display
  4. ^about_us
  5. ^products/$
  6. ^products/(\w+)/$
  7. ^contact/$
  8. ^login/$
  9. ^login_check
  10. ^console
  11. ^confirmorder
  12. ^track
  13. ^orderhistory
  14. ^logout
  15. ^adminhome
  16. ^admin_invoice
  17. ^admin_finishedorder
  18. ^admin_undoorder
  19. ^admininvoicedetail/(?P<slug>[-\w]+)/$
  20. ^changeduedate/(?P<slug>[-\w]+)/$
  21. ^duedate_update
  22. ^addpricelist
  23. ^addintopricelist
  24. ^create_subaccount/$
  25. ^create_subaccount_submit
  26. ^update_subaccount/(\w+)/$
  27. ^update_subaccount_submit
  28. ^admin_profile/$
  29. ^admin_profile_submit
  30. ^media/(?P<path>.*)$

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