{% extends "django_custom_error_views/base.html" %} {% load static %} {% block title %} Bad Request {% endblock title %} {% block content %}
Error image

{{ title|default:"Error, bad request." }}

{{ description|default:"This ia a malformed or illegal request. 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
{% endblock %}