{% extends "base.html" %} {% block title %}Webhooks — {{ project.name }} — Fossilrepo{% endblock %} {% block content %}

{{ project.name }}

{% include "fossil/_project_nav.html" %}

Webhooks

Add Webhook
{% if webhooks %}
{% for webhook in webhooks %}
{{ webhook.url }} {% if webhook.is_active %} Active {% else %} Inactive {% endif %}
Events: {{ webhook.events }} Created {{ webhook.created_at|timesince }} ago {% with last=webhook.deliveries.first %} {% if last %} Last delivery: {% if last.success %}{{ last.response_status }}{% else %}{{ last.response_status|default:"failed" }}{% endif %} {% endif %} {% endwith %}
Deliveries Edit
{% csrf_token %}
{% endfor %}
{% else %}

{% if search %}No webhooks matching "{{ search }}".{% else %}No webhooks configured.{% endif %}

{% if not search %} Add the first webhook {% endif %}
{% endif %} {% include "includes/_pagination.html" %}
{% endblock %}