From: Michael Tremer Date: Wed, 7 Jan 2026 17:23:06 +0000 (+0000) Subject: dnsbl: domains: Show a pop-up to encourage people to report X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c384c898d332c03561e5092f4bdc34940c8a781;p=ipfire.org.git dnsbl: domains: Show a pop-up to encourage people to report Signed-off-by: Michael Tremer --- diff --git a/src/templates/dnsbl/lists/domain.html b/src/templates/dnsbl/lists/domain.html index c9cfa1d8..061711e5 100644 --- a/src/templates/dnsbl/lists/domain.html +++ b/src/templates/dnsbl/lists/domain.html @@ -89,6 +89,44 @@ +
+
+
+ {% set blocked = False %} + + {# Is this domain blocked? #} + {% for event in events %} + {% if event.blocks %} + {% set blocked = True %} + {% end %} + {% break %} + {% end %} + +
+
+ {% if blocked %} + + {{ _("Do you think this domain should not be blocked?") }} + + {% else %} + + {{ _("Do you think this domain should be blocked?") }} + + {% end %} + + {{ _("Send a report and help us to improve IPFire DNSBL.") }} +
+ + +
+
+
+
+ {# History #} {% if events %}