Page not found (404)

Request Method: GET
Request URL: http://localhost:8001/dinner

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

  1. admin/
  2. [name='index']
  3. menu [name='menu']
  4. contact [name='contact']
  5. sendmail [name='sendmail']
  6. gallery [name='gallery']
  7. bar [name='bar']
  8. menu/brunch/ [name='brunch_menu']
  9. menu/dinner/ [name='dinner_menu']
  10. menu/kids/ [name='kids_menu']
  11. menu/dessert/ [name='dessert_menu']
  12. menu/alldaymeal/ [name='all_day_menu']
  13. menu/happyhour/ [name='happy_hour_menu']
  14. reservation [name='reservation']
  15. ^media/(?P<path>.*)$

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