[Answer]-Django: handler404 and TemplateView.as_view

1👍

You don’t need any custom views for this task. Use the django’s built-in:

url(r'^404/$', 'django.views.defaults.page_not_found'),

Leave a comment