{% extends "vend/_layouts/settings" %} {% block actionButton %} {{ "New Webhook"|t('vend') }} {% endblock %} {% block content %}

{{ "Webhooks"|t('vend') }}

Note that freshly created or deleted webhooks will take a little while to update here.

{% if webhooks is not empty %} {% for webhook in webhooks %} {% endfor %}
{{ "Type" }} {{ "URL" }} {{ "Active" }}
{{ webhook.type }} {{ webhook.url }} {{ webhook.active ? 'Yes' : 'No' }}
{% endif %} {% endblock %} {% js %} var adminTable = new Craft.AdminTable({ tableSelector: '#webhooks', noItemsSelector: '#no-webhooks', deleteAction: 'vend/webhooks/delete', confirmDeleteMessage: '{{ "Are you sure you want to delete the “{name}” webhook?"|t('vend') }}', }); {% endjs %}