{% extends "base.html" %} {% set title = _('Access denied') %} {% block content %}

{{ title }}

{{ _('You do not have permission to access this page.') }}

{% if not user.is_authenticated() %} {% include "layout/login.html" %} {% endif %}
{% endblock %}