{% include "_privacy_meta.html" %} {% include "_dashboard_scripts.html" %} {% set page_subtitle = "Configuration" %} {% set nav_current = "config" %} {% include "_header.html" %}
{{ split_note }}
{% from "_config_value.html" import render_value, hint_control with context %} {% for section in sections %} {% if section.id == "meta" %}

{{ section.title }}

Mode{{ hint_control("meta.mode", "Mode", true) }}
{{ section.fields.mode }}
Version{{ hint_control("meta.version", "Version", true) }}
{{ section.fields.version }}
Config path{{ hint_control("meta.config_path", "Config path", true) }}
{{ section.fields.config_path }}
{% else %}

{{ section.title }}{% if section.badge %} ({{ section.badge }}){% endif %}

{{ hint_control(section.id, section.title) }}
{% if section.toml %}

{{ section.toml }}

{% endif %}
{% if section.kind %} {{ section.kind }} {% endif %} {% if section.badge %} {% if section.badge == "on" %} {% elif section.badge == "off" %} {% else %} {% endif %} {% endif %}
{% if section.message %}

{{ section.message }}

{% endif %} {% if section.fields %} {{ render_value(section.fields, false, section.id ~ ".") }} {% endif %}
{% endif %} {% endfor %}