{{ 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 }}
{{ section.title }}{% if section.badge %} ({{ section.badge }}){% endif %}
{{ hint_control(section.id, section.title) }}{{ 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 %}