Page not found (404)

Request Method: GET
Request URL: http://keybyme.com/KeyByMe/*

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

  1. admin/
  2. [name='index2']
  3. home/ [name='nombrex']
  4. cats/ [name='catsx']
  5. items/ [name='itemsx']
  6. contactos/ [name='contactosx']
  7. login/ [name='login']
  8. edit_item/<int:pk> [name='editx']
  9. edit_contacto/<int:pk> [name='editconx']
  10. add_item [name='addx']
  11. add_contacto [name='addconx']
  12. delete_item/<int:pk> [name='deletex']
  13. delete_contacto/<int:pk> [name='deleteconx']
  14. logout/ [name='logoutx']
  15. qrcode/ [name='qrcodex']
  16. photo/ [name='photox']
  17. delete_photo/<int:pk> [name='delete_photo']
  18. contact/ [name='contact']
  19. notes/ [name='notes']
  20. ^media/(?P<path>.*)$

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