{% extends "baseTemplate/index.html" %} {% load i18n %} {% block title %}{% trans "Installed Plugins - CyberPanel" %}{% endblock %} {% block header_scripts %} {% endblock %} {% block content %} {% load static %} {% get_current_language as LANGUAGE_CODE %}

{% trans "Plugins" %}

{% if plugins %}
{% for plugin in plugins %}
{% if plugin.type == "Security" %} {% elif plugin.type == "Performance" %} {% elif plugin.type == "Utility" %} {% elif plugin.type == "Backup" %} {% else %} {% endif %}

{{ plugin.name }}

{{ plugin.type }}
{{ plugin.desc }}
{% endfor %}
{% else %}

{% trans "No Plugins Installed" %}

{% trans "You haven't installed any plugins yet. Plugins extend CyberPanel's functionality with additional features." %}

{% endif %}
{% endblock %}