|
{{ contact.realName }} | |||
{% if contact.title %} {{ contact.title }} {% elif contact.role %} {{ contact.role }} {% else %} {{ contact.profession }} {% endif %} | ||||
{{ contact.organization }} | ||||
{% i18n "Birthday" %} | {{ contact.formattedBirthday }} {% i18np "(One year old)" "(%1 years old)" contact.age %} | |||
{{ phoneNumber.typeLabel }} | {% if phoneNumber.supportsSms %}{{ phoneNumber.number }} | {{ phoneNumber.number }} | {% endif %}||
{% i18n "Email" %} | {{ email.email }} | |||
{{ imAddress.serviceLabel }} | {{ imAddress.address.path|safe }} | {% icon imAddress.serviceIcon small %} | ||
{% i18n "Website" %} | {% if website.url.scheme %} {% else %} {% endif %} {{ website.url }} | |||
{% i18n "Blog Feed" %} | {% if contact.blogFeed.scheme %} {% else %} {% endif %} {{ contact.blogFeed }} | |||
{{ address.typeLabel }} |
{% with address.formattedAddress as fa %}
{% for line in fa.splitlines %}
{{ line }}
{% if line and not forloop.last %} {% endif %} {% endfor %} {% endwith %} |
|