{% extends "base.html" %} {% block content %}
PLUGINS
{% include "settings_tabs_select.html" %}
{% set filters = [ { "type": "input", "name": "Search", "label": "search", "id": "keyword", "placeholder": "keyword", "pattern": "(.*?)" }, { "type": "select", "name": "Context", "id": "context", "value": "all", "values": [ "all", "global", "multisite" ] } ] %}
FILTER
{% for filter in filters %} {% if filter['type'] == 'input' %}
{{ filter['name'] }}
{% endif %} {% if filter['type'] == 'select' %}
{{ filter['name'] }}
{% endif %} {% endfor %}
{% include "settings_plugins.html" %}
{% endblock content %}