{% extends "base.html" %} {% block title %}Profiles — SimpleX Manager{% endblock %} {% block content %}

Bot Profiles

{% if profiles %}
{% for p in profiles %}
{{ p.name }} {{ p.bot_type }} {% if p.running %}running{% else %}stopped{% endif %}
View
{% if p.address %}
{{ p.address }}
{% endif %}
{% endfor %}
{% else %}
No profiles yet. Create one to get started.
{% endif %}

New Bot Profile

{% endblock %}