{% 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
{{ plugin.name }} {{ plugin.version }}
{{ plugin.description }}
{{ 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 %}