{% extends "base.html" %} {% block title %} | {{ webhook_name }} {% endblock title %} {% block content %} {% if message %}{% endif %}

{{ webhook_name }}

{{ total_entries }} total from {{ feeds_count }} feed{{ 's' if feeds_count != 1 else '' }}

{{ webhook_url }}

Settings


Mass update feed URLs

Replace part of feed URLs for all feeds attached to this webhook.

{% include "_webhook_mass_update_preview.html" %}

Attached feeds

{% if webhook_feeds %} {% else %}

No feeds are attached to this webhook yet.

{% endif %}
{# Rendered HTML content #} {% if entries %}

Latest entries

{{ html|safe }}
{% if is_show_more_entries_button_visible and last_entry %} Show more entries {% endif %} {% elif feeds_count == 0 %}

No feeds found for {{ webhook_name }}. Add feeds to this webhook to see entries here.

{% else %}

No entries found for {{ webhook_name }}. Update feeds to fetch new entries.

{% endif %} {% endblock content %}