{% extends "webwhois/block_main.html" %} {% load i18n static keyset_filters %} {% block title %}{% trans "Scan results" %} {{ handle }} - {{ block.super }}{% endblock %} {% block extrahead %} {% endblock %} {% block content %}
{% block webwhois_main %} {% block webwhois_header %}

{% trans "Results of DNSSEC automatic management scans" %}

{% block webwhois_scan_results_header %}{% endblock %}

{% trans "Results of DNSSEC automatic management scans for the domain" %} {{ handle }}:

{% endblock webwhois_header %} {% block webwhois_content %}
{% for result in scan_results %} {% endfor %}
{% 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" %}
{% endif %}
{% endblock webwhois_content %} {% block webwhois_footer %} {% endblock webwhois_footer %} {% endblock webwhois_main %}
{% endblock content %}