Page not found (404)

Request Method: GET
Request URL: http://myhotels.mn/hotel/23/

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

  1. admin/
  2. basket/
  3. [name='index']
  4. shop/<str:product_id> [name='product_detail']
  5. category/<str:category_id> [name='category_detail']
  6. checkout/ [name='product_checkout']
  7. orders/ [name='orders']
  8. orders/<str:invoice_id> [name='order_detail']
  9. login/ [name='login']
  10. register/ [name='register']
  11. forgot/ [name='forgot']
  12. reset/ [name='reset']
  13. logout/ [name='logout']
  14. webhook/ [name='qpay']

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