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

{% trans "Scan results" %}

{% endblock webwhois_header %} {% block webwhois_content %} {% for result in scan_results %} {% endfor %}
{% trans "Date and time" %} {% trans "Worker" %} {% trans "Name server" %} {% trans "Status" %} {% trans "Flags" %} {% trans "Algorithm" %} {% trans "Public key" %}
{{ result.scan_at }} {{ result.worker_name }}
{{ result.nameserver|default:'' }} {% if result.nameserver_ip|length > 0 %} ({{ result.nameserver_ip }}) {% endif %}
{{ result.cdnskey.status.value }}
{% if result.cdnskey.public_key %} {% for flag in result.cdnskey.flags.flags %} {{ flag.label }}{% if not forloop.last %},{% endif %} {% endfor %} {% endif %} {% if result.cdnskey.public_key %} {{ result.cdnskey.alg.label }} {% 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 %}