{% extends "pobsync_backend/base.html" %} {% block title %}Notifications | pobsync{% endblock %} {% block content %}

Targets

{% for target in targets %} {% empty %} {% endfor %}
Name Channel Status Events Destination Last delivery Actions
{{ target.name }} {{ target.get_channel_display }} {{ target.enabled|yesno:"enabled,disabled" }} {{ target.statuses|join:", " }} {% if target.channel == "email" %} {{ target.email_to|linebreaksbr }} {% else %} {{ target.webhook_url|truncatechars:70 }} {% endif %} {% if target.last_status %} {{ target.last_status }} {% if target.last_error %}
{{ target.last_error|truncatechars:90 }}
{% endif %} {% if target.last_sent_at %}
{{ target.last_sent_at }}
{% endif %} {% else %} none {% endif %}
Edit
No notification targets configured yet.

Recent Deliveries

{% for delivery in deliveries %} {% empty %} {% endfor %}
Target Run Status Created Error
{{ delivery.target.name }} Run {{ delivery.run.id }} {{ delivery.run.host.host }} {{ delivery.status }} {{ delivery.created_at }} {{ delivery.error|default:"" }}
No notification deliveries recorded yet.
{% endblock %}