From ca40b2ea7aeb1d6dbfb49a39822d3c467df1821f Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Tue, 16 Sep 2025 16:34:58 +0200 Subject: [PATCH] Adding output --- changedetectionio/templates/_helpers.html | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/changedetectionio/templates/_helpers.html b/changedetectionio/templates/_helpers.html index de177d455..e7ec51126 100644 --- a/changedetectionio/templates/_helpers.html +++ b/changedetectionio/templates/_helpers.html @@ -1,6 +1,13 @@ {% macro render_field(field) %} -
{{ field.label }}
-
{{ field(**kwargs)|safe }} +
{{ field.label }}
+
{{ field(**kwargs)|safe }} + {% if field.top_errors %} +
    + {% for error in field.top_errors %} +
  • {{ error }}
  • + {% endfor %} +
+ {% endif %} {% if field.errors %}
    {% for error in field.errors %}