Page not found (404)

Request Method: GET
Request URL: http://www.supstl.com/accounts_receivable.html

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

  1. ^i18n/
  2. ^robots\.txt$
  3. ^contact-us/$ [name='contact_us']
  4. ^career/$ [name='career']
  5. ^corporate/$ [name='corporate']
  6. ^corporate/credit-department/$ [name='credit_department']
  7. ^corporate/accounts-receivable/$ [name='accounts_receivable']
  8. ^corporate/accounts-payable/$ [name='accounts_payable']
  9. ^processing/$ [name='processing']
  10. ^product-overview/$ [name='product_overview']
  11. ^products/data-book/$ [name='product_data_book']
  12. ^products/data-book/(?P<category>[-\w]+)/(?P<product>[-\w]+)/$ [name='data_book_product']
  13. ^resources/conversion/(?P<conversion>[-\w]+)/$ [name='conversion']
  14. ^resources/credit-application/$ [name='credit_app']
  15. ^sales-region/(?P<region>[-\w]+)/product-category/(?P<category>[-\w]+)/$ [name='sales_region']
  16. ^service-center/(?P<location>[-\w]+)/$ [name='service_center']
  17. ^video/$ [name='video']
  18. ^$ [name='home']

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