Page not found (404)

Request Method: GET
Request URL: https://cravants.com/portfolio/view/fudroo.html/

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

  1. admin/
  2. [name='home']
  3. about/ [name='about']
  4. services/ [name='services']
  5. contact/ [name='contact']
  6. thankyou/ [name='thankyou']
  7. blog/
  8. portfolio/ [name='portfolio']
  9. portfolio/ <slug:slug>/ [name='view_portfolio']
  10. ckeditor/
  11. ^static/(?P<path>.*)$
  12. ^media/(?P<path>.*)$

The current path, portfolio/view/fudroo.html/, 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.