{% extends "base.html" %} {% block title %} Import OPML Feeds | discord-rss-bot {% endblock title %} {% block description %} Select which feeds to import from your OPML subscription list. {% endblock description %} {% block content %}

Import OPML Feeds

Found {{ total }} feed{{ 's' if total != 1 else '' }} in the OPML file. {% if new_count %} {{ new_count }} new {% endif %} {% if existing_count %} {{ existing_count }} already exist{{ 's' if existing_count == 1 else '' }} {% endif %}

{% if feeds %}
{% if webhooks %}
New feeds will be added with this webhook. Existing feeds will have their webhook overwritten. You can change this later per-feed.
{% else %} {% endif %}
{% for feed in feeds %} {% endfor %}
Feed URL Status
{{ feed.title }} {{ feed.url }} {% if feed.already_exists %} Already exists {% else %} New {% endif %}
Cancel
{% else %}

No feeds found in the OPML file.

Back to Settings {% endif %}
{% endblock content %} {% block head %} {% endblock head %}