{% extends "base.html" %} {% block content %}

Webhooks

Webhooks are called with a POST request containing {"uuid": "…"} when one of your simulations finishes.

{% if webhooks %} {% for webhook in webhooks %} {% endfor %}
URL Created Actions
{{ webhook.url }} {{ webhook.created_at }}
{% csrf_token %}
Delete
{% else %}

No webhooks configured yet.

{% endif %}

Add webhook

{% csrf_token %} {{ form.as_p }}
{% endblock content %}