{% extends "base.html" %} {% block title %}Sentinel — Settings{% endblock %} {% block content %}
Configuration Source {% if has_config_file %} sentinel.toml found {% else %} Using defaults {% endif %}
{% if not has_config_file %}

No sentinel.toml found{% if repo_path %} in {{ repo_path }}{% endif %}. All settings use default values.

{% endif %}
Active Settings
{% for f in fields %} {% endfor %}
Setting Value Type
{{ f.name }} {{ f.value if f.value != '' else '(empty)' }} {{ f.type }}
Environment Variables
{% for var, is_set in env_vars.items() %} {% endfor %}
Variable Status
{{ var }} {{ 'Set' if is_set else 'Not set' }}
{% endblock %}