{% extends theme("admin/admin_layout.html") %} {% block admin_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 %}