{% extends "base.html" %}
{% block title %}Settings — AtlasBridge{% endblock %}
{% block content %}
Settings
Runtime
| Edition | {{ settings.runtime.edition }} |
| Authority Mode | {{ settings.runtime.authority_mode }} |
| Version | {{ settings.runtime.version }} |
| Python | {{ settings.runtime.python_version }} |
| Platform | {{ settings.runtime.platform }} |
Config Paths
| Config directory | {{ settings.config_paths.config_dir }} |
| Config file | {{ settings.config_paths.config_file }} |
| Database | {{ settings.config_paths.db_path }} |
| Audit log | {{ settings.config_paths.audit_log }} |
| Trace file | {{ settings.config_paths.trace_file }} |
Dashboard Binding
| Host | {{ settings.dashboard.host }} |
| Port | {{ settings.dashboard.port }} |
| Loopback only | {{ "Yes" if settings.dashboard.loopback_only else "No" }} |
Diagnostics
| Check |
Status |
Detail |
{% for check in settings.diagnostics %}
| {{ check.name }} |
{% if check.status == "pass" %}
pass
{% elif check.status == "warn" %}
warn
{% elif check.status == "fail" %}
fail
{% else %}
{{ check.status }}
{% endif %}
|
{{ check.detail }} |
{% endfor %}
{% if edition == "enterprise" and settings.capabilities %}
Capabilities
| Capability |
Class |
Status |
{% for name, info in settings.capabilities.items() %}
| {{ name }} |
{{ info.capability_class }} |
{% if info.allowed %}
active
{% else %}
locked
{% endif %}
|
{% endfor %}
{% endif %}
{% endblock %}