{% extends "base.html" %} {% block title %}{{ tab | title }} — SimpleX Manager{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ tab | title }}

{% if tab == 'bots' %}

Available bot types

echoRepeats every message back to the sender — handy for testing a connection end to end.
broadcastRelays messages from authorized publishers out to all of the bot's contacts.
supportBusiness inbox — auto-replies with a welcome message and collects incoming inquiries.
directoryDirectory service for discovering and listing groups or contacts.
deadmansDead man's switch — triggers an action if expected check-ins stop arriving.
{% endif %} {% if items %} {% for p in items %}
{{ p.name }} {{ p.bot_type }} {% if p.running %}running{% else %}stopped{% endif %}
{% if p.address %}
{{ p.address }}
{% endif %}
{% endfor %} {% else %}
{% if tab == 'users' %} No users yet

Create a SimpleX user account to manage contacts and channels.

{% else %} No bots yet

Bots can echo messages, broadcast to subscribers, or run automated tasks.

{% endif %}
{% endif %}

New {{ 'User' if tab == 'users' else 'Bot' }}

{% if tab == 'bots' %}
{% endif %}
{% endblock %}