Page not found (404)

Request Method: GET
Request URL: https://coffeeculturetruck.com/menu/

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

  1. not_approved/
  2. [name='landing']
  3. contact/ [name='contact']
  4. about/ [name='about']
  5. gallery/ [name='gallery']
  6. testimonials/ [name='testimonials']
  7. truck/ [name='truck']
  8. api/
  9. coffeeadmin/
  10. ^media/(?P<path>.*)$
  11. ^static/(?P<path>.*)$

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