diff --git a/discord_rss_bot/templates/feed.html b/discord_rss_bot/templates/feed.html index 5199395..eb3e601 100644 --- a/discord_rss_bot/templates/feed.html +++ b/discord_rss_bot/templates/feed.html @@ -79,7 +79,6 @@
Feed URL
-

Change the URL for this feed. This can be useful if a feed has moved.

@@ -115,32 +114,43 @@
-
Update Interval
- {% if feed_interval %} -

- Current: {{ feed_interval }} minutes +

+ Update Interval + {% if feed_interval %} + Custom + {% else %} + Using global default + {% endif %} + +
+
+ Current: + {% if feed_interval %} + {{ feed_interval }} {% if feed_interval >= 60 %}({{ (feed_interval / 60) | round(1) }} hours){% endif %} - Custom -

- {% else %} -

- Current: {{ global_interval }} minutes + {% else %} + {{ global_interval }} {% if global_interval >= 60 %}({{ (global_interval / 60) | round(1) }} hours){% endif %} - Using global default -

- {% endif %} - + {% endif %} + minutes
+ -
- - -
+ + {% if feed_interval %}
@@ -150,12 +160,13 @@ {% endif %}
- {# Rendered HTML content #} -
{{ html|safe }}
- {% if is_show_more_entries_button_visible %} - - Show more entries - - {% endif %} +
+{# Rendered HTML content #} +
{{ html|safe }}
+{% if is_show_more_entries_button_visible %} + + Show more entries + +{% endif %} {% endblock content %}