diff --git a/Resources/views/Panel/configuration.html.twig b/Resources/views/Panel/configuration.html.twig index 61e02dae..93120998 100644 --- a/Resources/views/Panel/configuration.html.twig +++ b/Resources/views/Panel/configuration.html.twig @@ -36,42 +36,44 @@ - {% for name, config in configuration.datasources if config is iterable %} - - - {{ name }} - - Adapter - {{ config.adapter }} - - - DSN - {{ config.connection.dsn }} - - - Class - {{ config.connection.classname }} - - - Options - - - - - - Attributes - - - - + {% for name, config in configuration.datasources %} + {% if config is iterable %} + + + {{ name }} + + Adapter + {{ config.adapter }} + + + DSN + {{ config.connection.dsn }} + + + Class + {{ config.connection.classname }} + + + Options + + + + + + Attributes + + + + + {% endif %} {% endfor %}