{% extends "base.html" %} {% block title %}Webhook Subscriptions - LSMC Hub{% endblock %} {% block content %}

Webhook Subscriptions

+ New Subscription
{% if subscriptions %}
{% for sub, rev in subscriptions %} {% endfor %}
Name URL Event Types Status Created Actions
{{ sub.subscription_name }} {{ rev.url }} {{ rev.event_types|length }} events {% if rev.is_active %} Active {% else %} Inactive {% endif %} {{ sub.created_at.strftime('%Y-%m-%d') }} Edit Logs
{% else %}

No webhook subscriptions configured yet.

Create First Subscription
{% endif %}
{% endblock %}