Page not found (404)

Request Method: GET
Request URL: http://denote.soutade.fr/note/4/$web/$files

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

  1. ^index[/]?$ [name='index']
  2. ^[/]?$ [name='index']
  3. ^disconnect?$ [name='disconnect']
  4. ^user/add$ [name='new_user']
  5. ^user/edit$ [name='edit_user']
  6. ^note/add$ [name='add_note']
  7. ^note/(\d+)$ [name='note']
  8. ^note/(\d+)/(\d+)$ [name='public_note']
  9. ^public_notes$ [name='public_notes']
  10. ^category/edit/(\d)$ [name='edit_category']
  11. ^preferences$ [name='preferences']
  12. ^search$ [name='search']
  13. ^generate_search_index$ [name='generate_search_index']
  14. ^template/add$ [name='add_template']
  15. ^template/(\d+)$ [name='template']
  16. ^templates$ [name='templates']

The current path, note/4/$web/$files, 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.