{% extends "base.html" %} {% block title %}{{ profile.name }} — SimpleX Manager{% endblock %} {% block head %} {% endblock %} {% block content %}
← Profiles / {{ profile.name }} {{ profile.bot_type }} {% if profile.running %}running{% else %}stopped{% endif %}
{% if profile.running %} {% else %} {% endif %}

Address

{% if profile.address %}
{{ profile.address }}
{% else %}

Start the bot to generate an address.

{% endif %}

Config

{% for k, v in profile.config.items() %} {% else %} {% endfor %}
KeyValue
{{ k }}{{ v }}
No config set.

Send Message

{% for c in contacts %}

Contacts ({{ contacts | length }})

{% if contacts %} {% for c in contacts %} {% endfor %}
NameID
{{ c.localDisplayName }} {{ c.contactId }}
{% else %}

No contacts yet.

{% endif %}

Groups ({{ groups | length }})

{% if groups %} {% for g in groups %} {% endfor %}
NameMembers
{{ g.groupInfo.groupProfile.displayName }} {{ g.members | length }}
{% else %}

No groups yet.

{% endif %}

Event Log

{% for line in log_lines %}{{ line }} {% endfor %}
{% endblock %}