Page not found (404)

Request Method: GET
Request URL: http://localhost:8083/golf_registration

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

  1. ^favicon\.ico$
  2. ^$
  3. ^admin/
  4. ^admin/doc/
  5. ^pages/
  6. ^account/login/$
  7. ^account/logout/$
  8. ^account/settings/$ [name='account-settings']
  9. ^accounts/profile/
  10. ^fireman/(?P<pk>\d+)/edit$ [name='fireman-update']
  11. ^fireman/(?P<pk>\d+)$
  12. ^fireman/(?P<slug>\w+)/edit$ [name='fireman-update']
  13. ^fireman/(?P<slug>\w+)$
  14. ^firemen/(?P<selection>active|retired|alive|mailto|debug)?
  15. ^company/(?P<slug>\w+)/mailer$ [name='company-mailer']
  16. ^company/(?P<slug>\w+)/contact$ [name='company-contact']
  17. ^company/(?P<slug>\w+)/$
  18. ^company/$
  19. ^message/(your_house)/$ [name='message-base']
  20. ^message/(your_battalion)/$ [name='message-base']
  21. ^message/(jim)/$ [name='message-base']
  22. ^message/(?P<func>company)/(?P<pk>\d+)$ [name='message-base']
  23. ^message/(?P<func>company)/(?P<name>\w+)$ [name='message-base']
  24. ^message/fireman/(?P<pk>\d+)$ [name='message-member']
  25. ^message/review/$ [name='message_archive_view']
  26. ^message/review/(?P<pk>\d+)$
  27. ^mailer
  28. ^new_probie [name='new_probie']
  29. ^registration [name='registration']
  30. ^retired_registration [name='retired-registration']
  31. ^reports/hw_phone_numbers/(?P<company>\w+)$ [name='hw-phone-numbers']
  32. ^post/add/$ [name='entry-create-view']
  33. (^weblog/categories/)
  34. (^weblog/feeds/)
  35. (^weblog/trackback/)
  36. ^weblog/[?]?
  37. ^comments/
  38. (^comments/)
  39. ^booksearch/
  40. ^ ^login/$ [name='login']
  41. ^ ^logout/$ [name='logout']
  42. ^ ^password_change/$ [name='password_change']
  43. ^ ^password_change/done/$ [name='password_change_done']
  44. ^ ^password_reset/$ [name='password_reset']
  45. ^ ^password_reset/done/$ [name='password_reset_done']
  46. ^ ^reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$ [name='password_reset_confirm']
  47. ^ ^reset/done/$ [name='password_reset_complete']

The current URL, golf_registration, 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.