{% extends "base.html" %} {% block title %}Infos on domain {{domain}}{% endblock %} {% block header %}

Infos on {{domain}}

{% endblock %} {% block content %}

Instance information

Domain name: {% with domain=instance['domain'] %}{% include "widgets/links.html" %}{% endwith %}
Domain hash: {{instance['hash']}}
Software: {{instance['software']}}
Originating instance: {% if instance['origin'] != None %}{% with domain=instance['origin'] %}{% include "widgets/links.html" %}{% endwith %}{% else %}-{% endif %}
Command: {{instance['command']}}
Detection mode: {{instance['detection_mode']}}
NodeInfo URL: {{instance['nodeinfo_url']}}
Total peers: {{instance['total_peers']}}
Total blocks: {{instance['total_blocks']}}
Has obfuscated block list: {% if instance['has_obfuscation']%}Yes{%elif not instance['has_obfuscation']%}No{%else%}-{%endif%}
First seen: {{instance['first_seen']}}
Last updated: {{instance['last_updated']}}
Last nodeinfo fetched: {{instance['last_nodeinfo']}}
Last blocks fetched: {{instance['last_blocked']}}
Last instances fetched: {{instance['last_instance_fetch']}}
Last status code: {{instance['last_status_code']}}
Last error details: {{instance['last_error_details']}}
{% endblock %} {% block footer %} Index / {{ super() }} {% endblock %}