</div>
</section>
+ <section class="section">
+ <div class="container">
+ <div class="notification">
+ {% set blocked = False %}
+
+ {# Is this domain blocked? #}
+ {% for event in events %}
+ {% if event.blocks %}
+ {% set blocked = True %}
+ {% end %}
+ {% break %}
+ {% end %}
+
+ <div class="columns is-vcentered">
+ <div class="column">
+ {% if blocked %}
+ <strong>
+ {{ _("Do you think this domain should not be blocked?") }}
+ </strong>
+ {% else %}
+ <strong>
+ {{ _("Do you think this domain should be blocked?") }}
+ </strong>
+ {% end %}
+
+ {{ _("Send a report and help us to improve IPFire DNSBL.") }}
+ </div>
+
+ <div class="column is-narrow">
+ <a class="button is-primary is-small" href="/dnsbl/report?list={{ list.slug }}&name={{ name }}">
+ {{ _("Report %s") % name }}
+ </a>
+ </div>
+ </div>
+ </div>
+ </div>
+ </section>
+
{# History #}
{% if events %}
<section class="section">