{% extends "base.html" %} {% block title %}sendword — hooks{% endblock %} {% block crumbs %}
HOOKS
{% endblock %} {% block actions %} + NEW HOOK {% endblock %} {% block content %}

Hooks

{{ hooks | length }} hook{{ 's' if hooks | length != 1 }} configured

{% if hooks | length == 0 %}
NO HOOKS YET
Create your first webhook hook to get started.
+ NEW HOOK
{% else %}
ALL HOOKS
{% for hook in hooks %} {% endfor %}
NAME SLUG STATUS RECENT LAST TRIGGERED
{{ hook.name }} {{ hook.slug }} {% if hook.enabled %} ENABLED {% else %} DISABLED {% endif %} {% for status in hook.recent_statuses %} {% endfor %} {% if hook.last_triggered_at %} {{ hook.last_triggered_at }} {% else %} {% endif %}
{% endif %} {% endblock %}