{% extends "base.html" %} {% block title %}Dashboard — IRC Bot Portal{% endblock %} {% block content %}

Dashboard

Bot Status
{{ 'Running' if pid_exists else 'Stopped' }}
Nick
{{ cfg.get('bot_nick', 'avcbot') }}
Ollama Model
{{ cfg.get('ollama_model', '—') }}
Channels
{{ cfg.get('channels', [])|length }}
Memory
{{ 'Enabled' if cfg.get('memory_enabled', True) else 'Disabled' }}
Reload Socket
{{ 'Available' if sock_exists else 'Not available' }}

Connection

ZNC Host{{ cfg.get('znc_host', 'ham.activeblue.net') }}
Ollama{{ cfg.get('ollama_host', '—') }}:{{ cfg.get('ollama_port', '—') }}
Joined Channels{{ cfg.get('channels', [])|join(', ') or '—' }}
Trigger on Nick{{ 'Yes' if cfg.get('trigger_on_nick') else 'No' }}
Trigger Prefix{{ cfg.get('trigger_prefix') or '—' }}

Quick Actions

{% endblock %}