Page not found (404)

Request Method: GET
Request URL: http://162.243.20.47/memberships/

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

  1. ^media/(?P<path>.*)$
  2. ^jsi18n/$
  3. ^admin/doc/
  4. ^admin/
  5. ^scale_image/(?P<width>\d+)x(?P<height>\d+)/(?P<fill>[0-9a-fA-F]{3,8})/$ [name='scale_image']
  6. ^scale_image/(?P<width>\d+)x(?P<height>\d+)/$ [name='scale_image']
  7. ^scale_image/(?P<width>\d+)x(?P<height>\d+)/(?P<fill>[0-9a-fA-F]{3,8})(?P<image_url>\/\S+\.\S+)$ [name='scale_image']
  8. ^scale_image/(?P<width>\d+)x(?P<height>\d+)(?P<image_url>\/\S+\.\S+)$ [name='scale_image']
  9. ^ ^admintools/
  10. ^ ^assignments/
  11. ^ ^employees/
  12. ^ ^expenses/
  13. ^ ^hotels/
  14. ^ ^productsales/
  15. ^ ^projects/
  16. ^ ^reports/
  17. ^ ^timesheets/
  18. ^ ^wiki/
  19. ^ ^sitepreferences/
  20. ^ ^attachedfiles/
  21. ^ ^cvs/
  22. ^ ^qaupdate/$
  23. ^ ^svnupdate/$
  24. ^ ^$ [name='home']
  25. ^change_password/$ [name='change_password']
  26. ^password_changed/$ [name='password_changed']
  27. ^logout/$ [name='logout']

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