Page not found (404)

No ServicesType matches the given query.
Request Method: GET
Request URL: https://tour.yulon-motor.com.tw/reservation/30/41/date/
Raised by: reservation.views.Date

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

  1. ^admin/
  2. ^$ [name='index']
  3. ^reservation/ ^$ [name='reservation-index']
  4. ^reservation/ ^(?P<customer_pk>[0-9]+)/service/$ [name='reservation-service']
  5. ^reservation/ ^(?P<customer_pk>[0-9]+)/(?P<service_pk>[0-9]+)/date/$ [name='reservation-date']

The current path, reservation/30/41/date/, matched the last one.

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.