{% extends "admin/base.html" %} {% block page_header %} {% endblock %} {% block content %}
{{ msg() }}
{{_("Plugins",2)}}
{% for slug, plg in plugins %} {% endfor %}
{{_("Plugin",2)}} {{_("Version")}} {{_("Status",2)}}
{{plg.name}} {% if not plg.compatible %} Incompatible {% endif %} {{ plg.version|default('') }} {% if plg.update_available %} {{_("Update")}} {% endif %} {{ plg.active ? 'Active' : 'Inactive' }} {% if plg.active %} {{_("Deactivate",2)}} {% else %} {{_("Activate",2)}} {% endif %} {% if plg.update_available %} {{_("Update",2)}} {% endif %} {% if plg.has_settings %} {{_("Settings",2)}} {% endif %}
{% endblock %}