Page not found (404)

Request Method: GET
Request URL: http://elvesanderrands.com/search.html

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

  1. admin/
  2. oauth/
  3. search/ [name='search']
  4. product/<int:pk>/ [name='product']
  5. similar_products/<int:pk>/ [name='similar_products']
  6. billing/ [name='billing']
  7. settings/ [name='settings']
  8. add/product/ [name='add_product']
  9. product/<int:pk>/settings/ [name='product_settings']
  10. product/<int:pk>/remove/ [name='remove_product']
  11. my-products/ [name='products']
  12. my-bids/ [name='bids']
  13. my-profile/ [name='my_profile']
  14. my-orders/ [name='orders']
  15. order/<int:pk>/ [name='order']
  16. buy/<int:pk>/ [name='buy']
  17. cancel/<int:pk>/ [name='cancel']
  18. submit/<int:pk>/ [name='submit']
  19. confirm/<int:pk>/ [name='confirm']
  20. decline/<int:pk>/ [name='decline']
  21. dispute/<int:pk>/ [name='dispute']
  22. apply/<int:pk>/ [name='apply']
  23. choose/ [name='choose']
  24. confirm/choice/ [name='confirm_choice']
  25. chat/ [name='chat']
  26. chat/messages/ [name='chat_messages']
  27. chat/start/ [name='start_chat']
  28. chats/ [name='chats']
  29. lock/ [name='lock']
  30. locked/ [name='locked']
  31. [name='landing']
  32. home/ [name='home']
  33. about/ [name='about']
  34. terms/ [name='terms']
  35. login/ [name='login']
  36. logout/ [name='logout']
  37. switch/ [name='switch']
  38. update_location/ [name='update_location']
  39. counters/ [name='counters']
  40. read_notifications/ [name='read_notifications']
  41. notifications/ [name='notifications']
  42. generate_paypal [name='generate_paypal']
  43. release_money [name='release_money']
  44. payment-success/<str:tx_id>/ [name='payment-success']
  45. payment-failed/<str:tx_id>/ [name='payment-failed']
  46. ^$ [name='paypal-ipn']
  47. ^media/(?P<path>.*)$
  48. ^static/(?P<path>.*)$

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