Page not found (404)

Request Method: GET
Request URL: http://shunya.yoga/legal/

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

  1. admin/
  2. [name='home']
  3. courses [name='courses']
  4. course/<int:id> [name='course']
  5. specials [name='specials']
  6. special/<int:id> [name='special_singel']
  7. philosophie/ [name='phil']
  8. about [name='about']
  9. contact [name='contact']
  10. impressum [name='impressum']
  11. legal [name='legal']
  12. links [name='links']
  13. signing/<int:id> [name='signing']
  14. ^static/(?P<path>.*)$
  15. ^media/(?P<path>.*)$

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