{% extends "webwhois/block_main.html" %} {% load i18n static keyset_filters %} {% block title %}{% trans "Scan results" %} {{ handle }} - {{ block.super }}{% endblock %} {% block extrahead %} {% endblock %} {% block content %}
{% trans "Results of DNSSEC automatic management scans for the domain" %} {{ handle }}:
{% endblock webwhois_header %} {% block webwhois_content %}{% trans "Date and time" %} | {% trans "Name server" %} | {% trans "Scan status" %} | {% trans "Flags" %} | {% trans "Algorithm" %} | {% trans "Protocol" %} | {% trans "Public key" %} |
---|---|---|---|---|---|---|
{{ result.scan_at|date:"SHORT_DATETIME_FORMAT" }} |
{{ result.nameserver|default:'' }}
{% if result.nameserver_ip|length > 0 %}
({{ result.nameserver_ip }})
{% endif %}
|
{{ result.cdnskey.status.value }}
|
{% if result.cdnskey.public_key %} {{ result.cdnskey.flags }} ({{ result.cdnskey.flags|dnskey_flag_labels }}) {% endif %} | {% if result.cdnskey.public_key %} {{ result.cdnskey.alg.value }} ({{ result.cdnskey.alg.label }}) {% endif %} | {% if result.cdnskey.proto %} {{ result.cdnskey.proto }} {% if result.cdnskey.proto == 3 %} (DNSSEC) {% endif %} {% endif %} |
{% if result.cdnskey.public_key %}
{{ result.cdnskey.public_key }}
{% trans "View" %}
|