Page not found (404)

Request Method: GET
Request URL: https://www.cocoa.fr/commentaires/cr/15/233/

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

  1. ^admin/
  2. ^bibliotheque/
  3. ^ ^$ [name='blog-index']
  4. ^ ^search/$ [name='blog-search']
  5. ^ ^search/(?P<query>[^/]+)/$ [name='blog-search-results']
  6. ^ ^search/(?P<query>[^/]+)/page-(?P<page>\d+)/$ [name='blog-search-results-page']
  7. ^ ^page-(?P<page>\d+)/$ [name='blog-page']
  8. ^ ^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/(?P<slug>[-.\w]+)/$ [name='blog-article']
  9. ^ ^(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/(?P<slug>[-.\w]+)/preview/$ [name='blog-article-preview']
  10. ^ ^(?P<category_slug>[-.\w]+)/$ [name='blog-category']
  11. ^ ^(?P<category_slug>[-.\w]+)/page-(?P<page>\d+)/$ [name='blog-category-page']

The current URL, commentaires/cr/15/233/, 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.