{% extends "django_custom_error_views/base.html" %} {% load static %} {% block title %} Page not found {% endblock title %} {% block content %}
{{ title|default:"OOPS! Page not found." }}
{{ description|default:"Sorry we can't find that page. You can find loads to explore on the home page." }}
{{ extra_content }}
{% if exception and render_exception %}The following exception was raised: {{ exception }}
{% endif %} Return Home