{% extends "Global/layout.html.twig" %} {% set pagetitle = 'Access denied'|trans %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{"current" : (pagetitle)}] %} {% include "Global/navigation.html.twig" with navigation %}
{% include "Global/message.html.twig" with { type: "danger", message: ('Access is denied. You may not have the appropriate permissions to access this resource.'|trans) ~ " " ~ ("You are logged in as:"|trans) ~ " " ~ app.user.getRole, icon: "fas fa-ban" } %}
{% endblock %}