{% extends "base.html" %} {% block title %}{% if mode == 'domain' %} - Instances that block {{value}}{% elif mode == 'reverse' %} - Instances that are blocked by {{value}}{% elif mode == 'reason' %} - Instances having block reason {{value}}{% endif %}{% endblock %} {% block rss %} {{ super() }} {% if mode == 'domain' %} {% elif mode == 'reverse' %} {% endif %} {% endblock %} {% block header %} {% if mode == 'reason' %}

Instances that use "{{value}}" in their reason

{% elif mode == 'reverse' %}

Instances that are blocked by {{value}}

{% elif mode == 'domain' %}

Instances that block {{value}}

{% endif %} {% endblock %} {% block content %} {% if amount == found %}

Maximum amount reached!

Please note that the maximum allowed amount is only returned, the blocker/blocked/reason might be more. Paging support is not finished yet.
{% endif %} {% for block_level in blocklist %}

{{block_level}} ({{blocklist[block_level]|length}})

{% for block in blocklist[block_level] %} {% endfor %}
Blocker {% if block_level == 'accept' %}Accepted{% else %}Blocked{% endif %} Reason First added Last seen
{% with domain=block['blocker'] %} {% include "widgets/links.html" %} {% endwith %} {% with domain=block['blocked'] %} {% include "widgets/links.html" %} {% endwith %} {{block['reason']}} {{block['first_seen']}} {{block['last_seen']}}
{% endfor %} {% endblock %} {% block footer %} Index / {{ super() }} {% endblock %}