Page not found (404)

Request Method: GET
Request URL: http://www.cramasinara.org/staff.php

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

  1. ^$ [name='home']
  2. ^page/(?P<post_slug>[-\w]+)$ [name='page']
  3. ^staff/$ [name='team']
  4. ^staff/(?P<post_slug>[-\w]+)$ [name='team-detail']
  5. ^news/$ [name='news']
  6. ^news/(?P<post_slug>[-\w]+)$ [name='news-detail']
  7. ^salvataggi/$ [name='salvataggi']
  8. ^salvataggi-filter/$ [name='salvataggi-filter']
  9. ^salvataggi/(?P<post_slug>[-\w]+)$ [name='salvataggi-detail']
  10. ^biologia/$ [name='biologia']
  11. ^biologia/(?P<post_slug>[-\w]+)$ [name='biologia-detail']
  12. ^contatti/$ [name='contatti']
  13. ^contatti-send/$ [name='send-contatti']
  14. ^language/(?P<language>[a-z\-]+)/$
  15. ^admin/
  16. ^media/(?P<path>.*)$

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