{% extends "base.html" %} {% block title %}{{ bot.name }} - irc.now{% endblock %} {% block banner %}{% include "partials/announcement.html" %}{% endblock %} {% block flash %}{% include "partials/flash.html" %}{% endblock %} {% block content %}

{{ bot.name }}

status

{% if bot.running %}

running

{% elif bot.status == "error" %}

error

{% if let Some(msg) = bot.status_message %}

{{ msg }}

{% endif %}
{% else %}

stopped

{% endif %}

configuration

scripts

{% if scripts.is_empty() %}

no scripts yet

{% else %} {% for script in scripts %}
{{ script.name }} {% if script.enabled %}enabled{% else %}disabled{% endif %}
{% endfor %} {% endif %}
new script

tools

danger zone

deleting a bot removes all its scripts, logs, and kv data.

{% endblock %}