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

{{ project.name }}

{% include "fossil/_project_nav.html" %}
← Back to Webhooks

Delivery Log

{{ webhook.url }}

{% if deliveries %}
{% for d in deliveries %} {% endfor %}
Status Event Response Duration Attempt Delivered
{% if d.success %} OK {% else %} Failed {% endif %} {{ d.event_type }} {{ d.response_status|default:"--" }} {{ d.duration_ms }}ms #{{ d.attempt }} {{ d.delivered_at|timesince }} ago
{% else %}

No deliveries yet.

{% endif %} {% endblock %}