From 91764d3e4ffc60a296f15f13e857cda8917f5c54 Mon Sep 17 00:00:00 2001 From: master3395 Date: Mon, 26 Jan 2026 03:47:41 +0100 Subject: [PATCH] feat(plugins): Add installed and active plugin statistics to Installed Plugins page - Calculate total installed plugins count - Calculate total active/enabled plugins count - Display statistics in page header with icons - Shows 'Installed: X' and 'Active: Y' counts - Statistics only shown when plugins are installed - Improves visibility of plugin status at a glance --- pluginHolder/templates/pluginHolder/plugins.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pluginHolder/templates/pluginHolder/plugins.html b/pluginHolder/templates/pluginHolder/plugins.html index a83d839d2..7978e2f24 100644 --- a/pluginHolder/templates/pluginHolder/plugins.html +++ b/pluginHolder/templates/pluginHolder/plugins.html @@ -989,6 +989,20 @@ {% trans "Installed Plugins" %}

{% trans "List of installed plugins on your CyberPanel" %}

+ {% if plugins %} +
+
+ + {% trans "Installed:" %} + {{ total_installed }} +
+
+ + {% trans "Active:" %} + {{ total_active }} +
+
+ {% endif %}