From dedbaabb94ffd24d3a378de4b8095c9202604a51 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Tue, 16 Aug 2022 10:06:52 +0200 Subject: [PATCH] Disable pagination --- changedetectionio/templates/watch-overview.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/changedetectionio/templates/watch-overview.html b/changedetectionio/templates/watch-overview.html index ef3828679..e514e0a77 100644 --- a/changedetectionio/templates/watch-overview.html +++ b/changedetectionio/templates/watch-overview.html @@ -55,8 +55,9 @@ {% set sorted_watches = watches|sort(attribute=sort_attribute, reverse=sort_order) %} {% for watch in sorted_watches %} - {% if not ( loop.index >= 3 and loop.index <=4) %}{% continue %}{% endif %} - + {# WIP for pagination, disabled for now + {% if not ( loop.index >= 3 and loop.index <=4) %}{% continue %}{% endif %} --> + #} RSS Feed - {{ pagination(sorted_watches,3, pagination_page) }} + {# WIP for pagination, disabled for now + {{ pagination(sorted_watches,3, pagination_page) }} + #} + {% endblock %}