{% extends "base.html" %} {% block content %} {% set attribute_name = "plugins" %} {% include "plugins_modal.html" %} {% set infos = [ {"name" : "TOTAL PLUGINS", "data" : plugins|length|string}, {"name" : "INTERNAL PLUGINS", "data" : plugins_count_internal|string}, {"name" : "EXTERNAL PLUGINS", "data" : plugins_count_external|string}, {"name" : "PRO PLUGINS", "data" : plugins_count_pro|string if is_pro_version else plugins_count_pro|string + ' (preview)'}, ] %} {% include "card_info.html" %}
UPLOAD / RELOAD

{% if is_readonly %} upload not available {% else %} click or drag and drop {% endif %}

{% set filters = [ { "type": "input", "name": "Search", "label": "search", "id": "keyword", "placeholder": "keyword", "pattern": "(.*?)" }, { "type": "select", "name": "Plugin type", "id": "types", "value": "all", "values": [ "all", "core", "external", "pro" ] } ] %} {% include "card_filter.html" %} {% include "filter_nomatch.html" %}
PLUGINS LIST
{% for plugin in plugins %}

{{ plugin['name'] }}

{% if plugin['page'] and plugin['type'] != "pro" or (plugin['page'] and plugin['type'] == "pro" and is_pro_version) %} {% endif %} {% if plugin['type'] == "external" and plugin['method'] in ('ui', 'manual') %} {% endif %} {% if plugin['type'] == "pro" %} {% endif %} {% if plugin['type'] == "external" %} {% endif %}
{% endfor %}
{% endblock %}