{% extends "base.html" %} {% load i18n %} {% load static %} {% block breadcrumbs %}
  • {% trans "Permission Denied" %}
  • {% endblock %} {% block content %}

    {% trans "Permission Denied" %}

    {% trans "CSRF verification failed. Request aborted." %}

    {% if no_referer %}

    {% trans "This HTTPS site requires a 'Referer' header to be sent by your web browser, but none was sent. This header is required for security reasons, to ensure your browser is not hijacked by third-parties." %}

    {% trans "If you have set up your web browser to not send 'Referer' headers, please turn that on (at-least for this site, for HTTPS connections, or for 'same-origin' requests)." %}

    {% elif no_cookie %}

    {% trans "This site requires a CSRF cookie when submitting forms. This cookie is required for security reasons, to ensure that your browser is not being hijacked by third-parties." %}

    {% trans "If you have set up your browser to not save cookies, please turn them on again (at-least for this site, or for 'same-origin' requests)." %}

    {% elif reason %}

    {% blocktranslate %}CSRF failure reason: {{ reason }}{% endblocktranslate %} {% endif %}

    {% endblock %}