{% extends "base.html" %} {% block title %}Configuration - {{ category | capitalize }}{% endblock %} {% block content %}

{{ category | capitalize }} Configuration

Manage your {{ category }} settings and environment variables.

{% if active_spec %}

{{ active_spec.label }}

Namespace: {{ active_spec.namespace }}

{% for node in active_spec.nodes %}
{% if node.icon %} {{ node.icon }} {% endif %}
{% if node.type == "boolean" %}
Enabled
{% elif node.type == "enum" %} {% elif node.type == "secret" %} {% elif node.type == "int" %} {% else %} {% endif %} {% if node.help_text %}

{{ node.help_text }}

{% endif %}
{% endfor %}
{% else %}
⚙️

Select a Configuration Group

Choose a configuration group from the sidebar to view and modify its settings.

{% endif %}
{% endblock %}