Page not found (404)

Request Method: GET
Request URL: http://www.licor.com/shop/customer/login/javascript(void)%3B

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

  1. ^admin/
  2. ^tinymce/
  3. ^$ [name='home']
  4. ^about/$ [name='about']
  5. ^help/$ [name='help']
  6. ^api/
  7. ^cart/
  8. ^customer/ ^auth/$ [name='auth']
  9. ^customer/ ^firstname/$ [name='first_name']
  10. ^customer/ ^register/$ [name='register']
  11. ^customer/ ^register/contact-address/(?i)([0-9a-f\-]{36})/$ [name='register_contact_address']
  12. ^customer/ ^register/complete/$ [name='registration_complete']
  13. ^customer/ ^activate/(?i)([0-9a-f\-]{36})/$ [name='activate']
  14. ^customer/ ^activate/complete/$ [name='activation_complete']
  15. ^customer/ ^activate/error/$ [name='activation_error']
  16. ^customer/ ^activate/fail/$ [name='activation_failed']
  17. ^customer/ ^login/$ [name='login']
  18. ^customer/ ^logout/$ [name='logout']
  19. ^customer/ ^password/reset/$ [name='password_reset']
  20. ^customer/ ^password/reset/complete/$ [name='password_reset_complete']
  21. ^customer/ ^password/new/(?i)([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})/$ [name='set_new_password']
  22. ^customer/ ^home/$ [name='customer_home']
  23. ^customer/ ^account/$ [name='account']
  24. ^customer/ ^account2/$ [name='account2']
  25. ^customer/ ^account/password/change/$ [name='change_password']
  26. ^customer/ ^account/addresses/$ [name='addresses']
  27. ^customer/ ^account/address/$ [name='address_form']
  28. ^customer/ ^account/address/(?P<type>billing|shipping)/$ [name='address_form_type']
  29. ^customer/ ^account/address/(\d+)/$ [name='edit_address']
  30. ^customer/ ^account/address/(\d+)/delete$ [name='delete_address']
  31. ^customer/ ^account/address/cart/$ [name='address_form_from_cart']
  32. ^customer/ ^account/address/(\d+)/cart/$ [name='edit_address_from_cart']
  33. ^customer/ ^account/info/$ [name='customer_form']
  34. ^customer/ ^dashboard/$ [name='dashboard']
  35. ^customer/ ^orders/$ [name='orders']
  36. ^customer/ ^order/(\d+)/$ [name='order_detail']
  37. ^quote/
  38. ^product/
  39. ^store/
  40. ^promo/
  41. ^software/
  42. ^metrics/
  43. ^media\/(?P<path>.*)$

The current URL, customer/login/javascript(void);, 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.