{% set page_title = "Plugins" %} {% extends theme("management/management_layout.html") %} {% block management_content %} {% from theme('macros.html') import render_pagination %} Manage Plugins {% for plugin in plugins %} {% endfor %}
Plugin Information Manage
{% if plugin.website %} {{ plugin.name }} {% else %} {{ plugin.name }} {% endif %} Version: {{ plugin.version }}
{{ plugin.description }}
by {{ plugin.author }}
{% if not plugin.enabled %} Enable {% else %} Disable {% endif %} {% set uninstallable = plugin.uninstallable %} {% if plugin.installable and not uninstallable %}
Install {% endif %} {% if uninstallable %} Uninstall {% endif %}
{% endblock %}