{% extends "base.html" %} {% block title %}Webhooks{% endblock %} {% block content %}

🔌 Webhook Notifications

Add New Webhook

{% for event in ['task.completed', 'task.failed', 'report.created', 'campaign.published'] %} {% endfor %}
{% for ep in endpoints %}
{{ ep.url[:60] }}{% if ep.url|length > 60 %}...{% endif %}
Events: {{ ep.events | join(', ') if ep.events else 'All' }}
{% else %}
No webhooks configured
{% endfor %}
{% endblock %}