{% extends "base.html" %} {% block content %} {% set configs_info = [ { "id": "total-conf", "name": "CONFIGS TOTAL", "data": "unknown" }, { "id": "global-conf", "name": "CONFIGS GLOBAL", "data": "unknown" } ] %}
INFO
{% for info in configs_info %}

{{ info['name'] }}

{{ info['data'] }}

{% endfor %}
{% set filters = [ { "type": "select", "name": "Path with conf only", "id": "withconf", "value": "false", "values": [ "false", "true" ] }, { "type": "select", "name": "Show global conf only", "id": "globalconf", "value": "false", "values": [ "false", "true" ] } ] %}
FILTER
{% for filter in filters %} {% if filter['type'] == 'input' %}
{{ filter['name'] }}
{% endif %} {% if filter['type'] == 'select' %}
{{ filter['name'] }}
{% endif %} {% endfor %}
{% include "file_manager.html" %} {% endblock content %}