]> Raphaël G. Git Repositories - airbundle/commitdiff
Update to new config tree
authorRaphaël Gertz <git@rapsys.eu>
Thu, 12 Aug 2021 15:43:14 +0000 (17:43 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 12 Aug 2021 15:43:14 +0000 (17:43 +0200)
Add trace for admin

Resources/views/security/denied.html.twig

index 51e5824a74338dda6bebe3fb4f0b8275c600c403..ccbc098fdcdaeca6562aacd04116ffdc73ec3bc4 100644 (file)
@@ -1,7 +1,8 @@
 {% extends '@RapsysAir/body.html.twig' %}
 {% block content %}
 <section id="content">
-       <h2><a href="{{ path('rapsys_air') }}">{{ section }}</a></h2>
-       <p>{% if message %}{{ message }}{% else %}{% trans %}Access denied{% endtrans %}{% endif %}</p>
+       <h2><a href="{{ path('rapsys_air') }}">{{ page.title }}</a></h2>
+       <p>{% if message is defined %}{{ message }}{% else %}{% trans %}Access denied{% endtrans %}{% endif %}</p>
+       {% if is_granted('ROLE_ADMIN') %}{% if trace is defined %}<pre>{{ trace }}</pre>{% endif %}{% endif %}
 </section>
 {% endblock %}