{# fablednetmon/templates/settings/index.html #} {% extends "base.html" %} {% block title %}Settings — FabledNetMon{% endblock %} {% block content %}

Settings

{# ── General ──────────────────────────────────────────────────────────── #}

General

{# ── SMTP ─────────────────────────────────────────────────────────────── #}

Email (SMTP)

{# ── Webhook ──────────────────────────────────────────────────────────── #}

Webhook

{# ── Ansible Sources ──────────────────────────────────────────────────── #}

Ansible Sources

JSON array of source objects. Each requires name, type (git or local), and either url or path.

{# ── Plugins ──────────────────────────────────────────────────────────── #} {% if discovered_plugins %}

Plugins

{% for plugin in discovered_plugins %}
{% for cfg_key, cfg_default in plugin.get('config', {}).items() %}
{% endfor %}
{% endfor %}
{% endif %}
Changes take effect immediately. Monitor interval, plugin enable/disable require a restart.
{% endblock %}