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

{% trans "Contact details" %}

{% endblock webwhois_header %} {% block webwhois_content %} {% if 'linked' in contact.flags %} {% endif %} {% block contact_status %} {% endblock contact_status %}
{% trans "Handle" %} {{ contact.detail.contact_handle }} {% block webwhois_contact_handle %}{% endblock webwhois_contact_handle %}
{% trans "Organization" %} {% if contact.detail.publish.organization %} {{ contact.detail.organization }} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Name" %} {% if contact.detail.publish.name %} {{ contact.detail.name }} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "VAT number" %} {% if contact.detail.publish.vat_identification_number %} {{ contact.detail.vat_identification_number|default_if_none:'' }} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Identification type" %} {% if contact.detail.additional_identifier %} {% if contact.detail.publish.additional_identifier %} {{ contact.detail.additional_identifier.type|contact_ssn_type_label }} {% else %} {% trans "Not disclosed" %} {% endif %} {% endif %}
{% trans "Identification data" %} {% if contact.detail.additional_identifier %} {% if contact.detail.publish.additional_identifier %} {% if contact.detail.additional_identifier.birthdate %} {{ contact.detail.additional_identifier.birthdate }} {% else %} {{ contact.detail.additional_identifier.value }} {% endif %} {% else %} {% trans "Not disclosed" %} {% endif %} {% endif %}
{% trans "Email" %}
{% trans "Notification email" %} {% if contact.detail.publish.notify_emails %} {% if contact.detail.notify_emails %} {{ contact.detail.notify_emails|join:", " }} {% endif %} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Phone" %} {% if contact.detail.publish.telephone %} {{ contact.detail.telephone|default_if_none:'' }} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Fax" %} {% if contact.detail.publish.fax %} {{ contact.detail.fax|default_if_none:'' }} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Registered since" %} {{ contact.detail.events.registered.timestamp|date:"SHORT_DATE_FORMAT" }}
{% trans "Created by registrar" %} {{ contact.creating_registrar.registrar_handle }} {{ contact.creating_registrar.name }}
{% trans "Last update" %} {% if contact.detail.events.updated %} {{ contact.detail.events.updated.timestamp|date:"SHORT_DATE_FORMAT" }} {% endif %}
{% trans "Last transfer" %} {{ contact.detail.events.transferred.timestamp|date:"SHORT_DATE_FORMAT" }}
{% trans "Address" %} {% if contact.detail.publish.place %} {% spaceless %} {% if contact.detail.place %} {{ contact.detail.place.street|join:", " }}, {{ contact.detail.place.postal_code }} {{ contact.detail.place.city }}{% if contact.detail.place.state_or_province %} – {{ contact.detail.place.state_or_province }}{% endif %}, {{ contact.detail.place.country_code }} {% endif %} {% endspaceless %} {% else %} {% trans "Not disclosed" %} {% endif %}
{% trans "Sponsoring registrar" %} {{ contact.sponsoring_registrar.registrar_handle }} {{ contact.sponsoring_registrar.name }}
{% trans "Status" %} {% if 'linked' in contact.flags %} {% for flag in contact.flags %}
{{ flag|state_flag_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.detail.contact_handle as record_statement_pdf_url %} {% include "webwhois/include/record_statement_link.html" %} {% endblock webwhois_content %}