diff --git a/templates/server/plugins/section.phtml b/templates/server/plugins/section.phtml
deleted file mode 100644
index fc0390bebd..0000000000
--- a/templates/server/plugins/section.phtml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
- | = __('Plugin'); ?> |
- = __('Description'); ?> |
- = __('Version'); ?> |
- = __('Author'); ?> |
- = __('License'); ?> |
-
-
-
-
-
- |
- = htmlspecialchars($plugin['plugin_name']); ?>
-
- = __('disabled'); ?>
-
- |
- = htmlspecialchars($plugin['plugin_description']); ?> |
- = htmlspecialchars($plugin['plugin_type_version']); ?> |
- = htmlspecialchars($plugin['plugin_author']); ?> |
- = htmlspecialchars($plugin['plugin_license']); ?> |
-
-
-
-
-
\ No newline at end of file
diff --git a/templates/server/plugins/section.twig b/templates/server/plugins/section.twig
new file mode 100644
index 0000000000..bca286d4b6
--- /dev/null
+++ b/templates/server/plugins/section.twig
@@ -0,0 +1,35 @@
+
+
+
+
+
+ | {% trans 'Plugin' %} |
+ {% trans 'Description' %} |
+ {% trans 'Version' %} |
+ {% trans 'Author' %} |
+ {% trans 'License' %} |
+
+
+
+ {% for plugin in plugin_list %}
+
+ |
+ {{ plugin['plugin_name'] }}
+ {% if not plugin['is_active'] %}
+
+ {% trans 'disabled' %}
+
+ {% endif %}
+ |
+ {{ plugin['plugin_description'] }} |
+ {{ plugin['plugin_type_version'] }} |
+ {{ plugin['plugin_author'] }} |
+ {{ plugin['plugin_license'] }} |
+
+ {% endfor %}
+
+
+