{% extends "layout.html" %} {% from 'macros/macros.html' import alert_dismiss with context %} {% from 'monitor_tiles.html' import monitor_tiles_styles%} {% block content %} {% if alerta %} {{ alert_dismiss(alerta) }} {% endif %}

{{ titulo|safe }}


Download
Download
{% if filename %}
Contents of {{ filename }}:
{% endif %} {% if abspath %}Path: {{ abspath|safe }}{% endif %} {% if extra_links %} {% endif %}

{% if dict_config_content %}
{% if show_switch_comments %}
{% endif %}
{% for section, config_opts in dict_config_content.items() %} {% if dict_config_content|length > 1 %}
{% else %}
{% endif %}

{{ section }}

{% for var_name, (value, var_type, comment) in config_opts.items() %} {% if comment and with_comments %}
# {{ comment }}
{% endif %}
{% if var_type == 'str' %}
{% elif var_type == 'text' %}
{% elif var_type == 'bool' %}
{% elif var_type == 'float' %}
{% else %}
{% endif %}
{% endfor %}
{% endfor %}
{% else %}
{% endif %}

{% if file_lines %}
{% for line in file_lines %}{{ line|safe }}
                    {% endfor %}
{% else %} {% endif %}

Upload file for replacement:


{% endblock %} {% block styles %} {{ monitor_tiles_styles() }} {% endblock %} {% block scripts %} {% endblock %}