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

{% trans "Contact details" %}

{% endblock webwhois_header %} {% block webwhois_content %} {% with contact=registry_objects.contact.detail %} {% if registry_objects.contact.is_linked %} {% endif %} {% if registry_objects.contact.is_linked and registry_objects.contact.verification_status %} {% endif %}
{% trans "Handle" %} {{ contact.handle }}{% block webwhois_contact_handle %}{% endblock webwhois_contact_handle %}
{% trans "Organization" %} {% if contact.organization.disclose %} {{ contact.organization.value|default_if_none:'' }} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Name" %} {% if contact.name.disclose %} {{ contact.name.value|default_if_none:'' }} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "VAT number" %} {% if contact.vat_number.disclose %} {{ contact.vat_number.value|default_if_none:'' }} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Identification type" %} {% if contact.identification.disclose %} {{ contact.identification.value.identification_type|contact_ssn_type_label|default_if_none:'' }} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Identification data" %} {% if contact.identification.disclose %} {% if contact.identification.value.identification_type == "BIRTHDAY" %} {{ registry_objects.contact.birthday|default_if_none:'' }} {% else %} {{ contact.identification.value.identification_data|default_if_none:'' }} {% endif %} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Email" %}
{% trans "Notify e-mail" %} {% if contact.notify_email.disclose %} {% if contact.notify_email.value %} {{ contact.notify_email.value }} {% endif %} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Phone" %} {% if contact.phone.disclose %} {{ contact.phone.value|default_if_none:'' }} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Fax" %} {% if contact.fax.disclose %} {{ contact.fax.value|default_if_none:'' }} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Registered since" %} {{ contact.created|date:"SHORT_DATE_FORMAT" }}
{% trans "Created by registrar" %} {% if contact.creating_registrar_handle %} {{ contact.creating_registrar_handle }} {{ registry_objects.contact.creating_registrar.name }} {% endif %}
{% trans "Last update" %} {{ contact.changed|date:"SHORT_DATE_FORMAT"|default_if_none:'' }}
{% trans "Last transfer" %} {{ contact.last_transfer|date:"SHORT_DATE_FORMAT"|default_if_none:'' }}
{% trans "Address" %} {% if contact.address.disclose %} {% spaceless %} {% if contact.address.value %} {% with addr=contact.address.value %} {{ addr.street1 }}{% if addr.street2 %}, {{ addr.street2 }}{% endif %}{% if addr.street3 %}, {{ addr.street3 }}{% endif %}, {{ addr.postalcode }} {{ addr.city }}{% if addr.stateorprovince %} – {{ addr.stateorprovince }}{% endif %}, {{ addr.country_code }} {% endwith %} {% endif %} {% endspaceless %} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Sponsoring registrar" %} {% if contact.sponsoring_registrar_handle %} {{ contact.sponsoring_registrar_handle }} {{ registry_objects.contact.sponsoring_registrar.name }} {% endif %}
{% trans "Contact verification status" %} {% for status in registry_objects.contact.verification_status %}
{{ status.code }} {{ status.label }}
{% endfor %}
{% trans "Status" %} {% if registry_objects.contact.is_linked %} {% for description in registry_objects.contact.status_descriptions %}
{{ description }}
{% endfor %} {% else %}
{% trans "Contact is registered but not linked to other registry object" %}
{% endif %}
{% url "webwhois:record_statement_pdf" object_type="contact" handle=contact.handle as record_statement_pdf_url %} {% include "webwhois/verified_record_statement_link.html" %} {% endwith %} {% endblock webwhois_content %}