From 9a5387ca08655714149bd80874b43ec94535a61c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Sun, 11 Dec 2022 14:23:56 +0100 Subject: [PATCH] Add confirmation when deleting feed --- discord_rss_bot/templates/feed.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/discord_rss_bot/templates/feed.html b/discord_rss_bot/templates/feed.html index ac19a2a..5a85e97 100644 --- a/discord_rss_bot/templates/feed.html +++ b/discord_rss_bot/templates/feed.html @@ -25,13 +25,14 @@
-
-
+
{% for entry in entries %} {% if loop.index > 1 %}
@@ -49,7 +50,7 @@ {% if entry.summary %}
Summary -
+
{{ entry.summary | safe }}
@@ -57,11 +58,11 @@ {% if entry.content %}
Content -
+
{{ entry.content[0].value | safe }}
{% endif %} {% endfor %}
-{% endblock %} \ No newline at end of file +{% endblock %}