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

Webhooks

{% if is_edit is defined and is_edit %}Edit Webhook{% else %}Create Webhook{% endif %}

{% if is_edit is defined and is_edit %}
{% endif %}
{% if is_edit is defined and is_edit %}Cancel{% endif %}

Active Webhooks

{% if webhooks is defined and webhooks | length > 0 %} {% for hook in webhooks %} {% endfor %}
Name URL Events Status
{{ hook.name }} {{ hook.url | truncate(length=40) }} {{ hook.events }} {% if hook.active %} Active {% else %} Inactive {% endif %} Edit Log
{% else %}

No webhooks configured. Create one to receive HTTP callbacks on content events.

{% endif %}
{% endblock %}