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 |
-
-
- {% for key, value in config.connection.options %}
- - {{ key }} : {{ value }}
- {% endfor %}
-
- |
-
-
- Attributes |
-
-
- {% for key, value in config.connection.attributes %}
- - {{ key }} : {{ value }}
- {% endfor %}
-
- |
-
+ {% for name, config in configuration.datasources %}
+ {% if config is iterable %}
+
+
+ {{ name }}
+ |
+ Adapter |
+ {{ config.adapter }} |
+
+
+ DSN |
+ {{ config.connection.dsn }} |
+
+
+ Class |
+ {{ config.connection.classname }} |
+
+
+ Options |
+
+
+ {% for key, value in config.connection.options %}
+ - {{ key }} : {{ value }}
+ {% endfor %}
+
+ |
+
+
+ Attributes |
+
+
+ {% for key, value in config.connection.attributes %}
+ - {{ key }} : {{ value }}
+ {% endfor %}
+
+ |
+
+ {% endif %}
{% endfor %}