{% extends "base.html" %} {% block content %} {% include "plugins_modal.html" %} {% set plugins_info = [ {"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)'}, ] %}
INFO
{% for info in plugins_info %}

{{ info['name'] }}

{{ info['data'] }}

{% endfor %}
UPLOAD / RELOAD

click or drag and drop

{% 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" ] } ] %}
FILTER
{% for filter in filters %} {% if filter['type'] == 'input' %}
{{ filter['name'] }}
{% endif %} {% if filter['type'] == 'select' %}
{{ filter['name'] }}
{% endif %} {% endfor %}
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" %} {% endif %} {% if plugin['type'] == "pro" %} {% endif %}
{% endfor %}
{% endblock %}