{% extends "base.html" %} {% block title %} {% if mode == 'detection_mode' %} - Detection mode {{value}} {% elif mode == 'software' %} - Used software {{value}} {% elif mode == 'command' %} - Command {{value}} {% elif mode == 'recently' %} - {{amount}} recently added instances {% endif %} {% endblock %} {% block header %} {% if mode == 'detection_mode' %}

Instances detected by method {{value}}

{% elif mode == 'software' %}

Instances using software {{value}}

{% elif mode == 'command' %}

Instances found by command {{value}}

{% elif mode == 'origin' %}

Instances originated from {{value}}

{% elif mode == 'recently' %}

{{amount}} recently added instances

{% else %}

mode={{mode}} not supported

{% 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 row in domainlist %} {% endfor %}
Domain Origin Software Detection mode Command Total peers Total blocks Response time First added Last updated
{% with domain=row['domain'] %} {% include "widgets/links.html" %} {% endwith %} {% with domain=row['origin'] %} {% include "widgets/links.html" %} {% endwith %} {% with mode='software', amount=amount, value=row['software'] %} {% include "widgets/list_links.html" %} {% endwith %} {% with mode='detection_mode', amount=amount, value=row['detection_mode'] %} {% include "widgets/list_links.html" %} {% endwith %} {{row['command']}} {{row['total_peers']}} {{row['total_blocks']}} {{'%0.2f'|format(row['last_response_time']|float)}} {{row['first_seen']}} {{row['last_updated']}}
{% endblock %} {% block footer %}

Please note:

Index / {{ super() }} {% endblock %}