{% extends "base.html" %} {% block title %}{{ tab | title }} — SimpleX Manager{% endblock %} {% block head %} {% endblock %} {% block content %} {% set new_label = 'User' if tab == 'users' else ('Business' if tab == 'businesses' else 'Bot') %}

{{ tab | title }}

{% if tab == 'businesses' %}

Business accounts

A business account uses a business address: each customer who connects gets their own group chat (so teammates can be added). You handle those conversations here, the same way you chat in a group. Set an optional welcome message to auto-greet new customers.

{% endif %} {% 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 %}
{% if p.config.avatar %} {% endif %} {{ 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.

{% elif tab == 'businesses' %} No business accounts yet

Create a business account; each customer who connects gets their own group chat.

{% else %} No bots yet

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

{% endif %}
{% endif %}

New {{ new_label }}

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