{% extends "django_custom_error_views/base.html" %}
{% load static %}
{% block title %}
Forbidden
{% endblock title %}
{% block content %}
{% if company_logo %}
{% endif %}
{{ title|default:"Forbidden page, access denied." }}
{{ description|default:"Sorry you are not allowed to access 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 {% endblock %}