{{ _("Notification Agents") }}

{{ _("Configure notification services to alert you about important events") }}

{% if agents %}
{% for agent in agents %}

{{ agent.name }}

{{ agent.type }}

{{ _("Status") }}
{{ _("Active") }}
{{ _("Events") }}:
{% set events = agent.notification_events.split(',') if agent.notification_events else [] %} {% if 'user_joined' in events %} {{ _("User Joined") }} {% endif %} {% if 'update_available' in events %} {{ _("Update Available") }} {% endif %}
{% endfor %}
{% else %}

{{ _("No notification agents") }}

{{ _("Get started by creating your first notification agent") }}

{% endif %}