{% trans_default_domain 'admin' %} {% for alert, flashes in app.session.flashbag.all %} {% for flash in flashes %} {% if alert == 'command' %}
{{ "Working directory"|trans }} : {{ flash.dirname }}
  1. {{ flash.command|raw }}
    {{ flash.output|raw }}
{% else %} {% include 'admin/include/alert.html.twig' with {"alert": alert, "message": flash} only %} {% endif %} {% endfor %} {% endfor %}