{% extends "webwhois/block_main.html" %} {% load i18n static webwhois_filters %} {% block title %}{% trans "Domain name" context "fullname" %} {{ handle }} - {{ block.super }}{% endblock %} {% block webwhois_header %} {{ block.super }}

{% trans "Domain name details" %}

{% endblock webwhois_header %} {% block webwhois_content %}
{% if 'deleteCandidate' not in domain.flags %} {% if domain.detail.validation_expires_at %} {% endif %} {% endif %}
{% trans "Domain name" context "fullname" %} {% if domain.detail.fqdn|idn_decode == domain.detail.fqdn %} {{ domain.detail.fqdn }} {% else %} {{ domain.detail.fqdn|idn_decode }} ({{ domain.detail.fqdn }}) {% endif %}
{% trans "Registered since" %} {{ domain.detail.events.registered.timestamp|date:"SHORT_DATE_FORMAT" }}
{% trans "Last update date" %} {% if domain.detail.events.updated %} {{ domain.detail.events.updated.timestamp|date:"SHORT_DATE_FORMAT" }} {% endif %}
{% trans "Expiration date" %} {{ domain.detail.expires_at|date:"SHORT_DATE_FORMAT" }}
{% trans "Validation expiration date" %} {{ domain.detail.validation_expires_at|date:"SHORT_DATE_FORMAT" }}
{% trans "Holder" %} {{ domain.detail.registrant.handle }} {{ domain.detail.registrant.organization|default:domain.detail.registrant.name }}
{% trans "Administrative contact" %} {% for admin in domain.detail.administrative_contacts %}
{{ admin.handle }} {{ admin.organization|default:admin.name }}
{% endfor %}
{% trans "Sponsoring registrar" %} {{ domain.registrar.registrar_handle }} {{ domain.registrar.name }} {% spaceless %} {% blocktrans with date=domain.detail.events.transferred.timestamp|default:domain.detail.events.registered.timestamp trimmed %} since {{ date }} {% endblocktrans %} {% endspaceless %}
{% trans "Secured by DNSSEC" %} {% if domain.detail.keyset %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %}
{% trans "Status" %} {% for flag in domain.flags %}
{{ flag|state_flag_description }}
{% endfor %}
{% if nsset %}
{% include "webwhois/include/nsset_detail.html" %}
{% endif %} {% if keyset %}
{% include "webwhois/include/keyset_detail.html" %}
{% endif %} {% if 'deleteCandidate' not in domain.flags %} {% url "webwhois:record_statement_pdf" object_type="domain" handle=domain.detail.fqdn as record_statement_pdf_url %} {% include "webwhois/include/record_statement_link.html" %} {% endif %} {% endblock webwhois_content %} {% block webwhois_footer %} {% if scan_results_link %}

{% trans "Scan results" %}

{% endif %} {{ block.super }} {% endblock webwhois_footer %}