Page not found (404)

Request Method: GET
Request URL: http://localhost:8000/en/usedboats/1,117

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

  1. admin/
  2. djga/
  3. sitemap.xml [name='django.contrib.sitemaps.views.sitemap']
  4. robots.txt
  5. en/ [name='index']
  6. en/ usedboats [name='used_boats']
  7. en/ usedboats/<int:boat_id>/ [name='boatname']
  8. en/ usedboats [name='used_boats']
  9. en/ newboats/ [name='new_boats']
  10. en/ newboats/<str:brand>/<str:model>/ [name='new_boats']
  11. en/ specialoffers [name='special_offers']
  12. en/ specialoffers/<str:boat_name>/ [name='specialoffername']
  13. en/ team [name='team']
  14. en/ contacts [name='contacts']
  15. en/ news [name='news']
  16. en/ news/<str:news_name>/ [name='newsdetailed']
  17. ^media/(?P<path>.*)$

The current path, en/usedboats/1,117, 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.