]> Raphaël G. Git Repositories - airbundle/commitdiff
Update error display
authorRaphaël Gertz <git@rapsys.eu>
Wed, 24 Feb 2021 00:38:08 +0000 (01:38 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Wed, 24 Feb 2021 00:38:08 +0000 (01:38 +0100)
Resources/views/error.html.twig

index 8dd4a69c3bb8875634d556a1fc289ff1718c08e9..ed9522024fe8eb3e4253354f8a019bcf69b64c3c 100644 (file)
@@ -1,8 +1,9 @@
 {% extends '@RapsysAir/body.html.twig' %}
 {% block content %}
-<section id="content">
+<section id="dashboard">
        <h2><a href="{{ path('rapsys_air') }}">{{ section }}</a></h2>
-       <p class="error">{% if message %}{{ message }}{% else %}{% trans %}Error{% endtrans %}{% endif %}</p>
-       {% if app.environment == 'dev' and trace is defined %}<pre class="trace">{{ trace }}</pre>{% endif %}
+       <p class="message error">{% if message %}{{ message }}{% else %}{% trans %}Error{% endtrans %}{% endif %}</p>
+       {# {% if app.environment == 'dev' and trace is defined %}<pre class="trace">{{ trace }}</pre>{% endif %} #}
+       {% if trace is defined and trace %}<pre class="trace">{{ trace }}</pre>{% endif %}
 </section>
 {% endblock %}