{% extends host_template %} {% load comments i18n fb_versions cyclope_utils markup dbgettext_tags%} {% block content %} {% alias contact as 'current_object' %}

{{contact}}

{% if contact.photo %} {% endif %}
{% trans "Given name" %}: {{contact.given_name}}
{% trans "Surname" %}: {{contact.surname}}
{% trans "Birth date" %}: {{contact.birth_date|default:""}}
{% trans "Gender" %}: {{contact.get_gender_display}}
{% trans "Email" %}: {{contact.email}}
{% trans "Web" %}: {{contact.web}}
{% trans "Mobile" %}: {{contact.mobile_phone_number}}
{% if contact.contactaddress_set.all %}
{% for address in contact.contactaddress_set.all %}
{{address.get_type_display}}
{% trans "Address" %}:
{{address}}
{% trans "Post Office Box" %}:
{{address.post_office_box}}
{% trans "Phone Number" %}:
{{address.phone_number}}
{% endfor %}
{% endif %}
{% if contact.has_profile %} {% with contact.get_profile as profile %} {% include CYCLOPE_CONTACTS_PROFILE_TEMPLATE %} {% endwith %} {% endif %}
{% if contact.tags %}
{% trans "Tags" %} {{ contact.tags }}
{% endif %}
{% trans "Last update" %}: {{contact.modification_date}}
{% include 'collections/categories_navigation_block.html' %}
{% endblock content%}