{% load thumbnail %} {% if person %}

{{ person.get_full_name }}


{% if person.image %}
{% thumbnail person.image.file "300x300" crop="center" as thumb %} {{ person.get_full_name }} {% endthumbnail %}
{% endif %}
{% for address in person.addresses.all|slice:':1' %}

{% firstof address.label "Address" %}: {% for part in address.get_address_parts %} {{ part }}{% if not forloop.last %},
{% endif %} {% endfor %}

{% endfor %} {% for phone in person.phone_numbers.all|slice:':1' %}

{{ phone.type|title }}{{ phone.phone_number }}

{% endfor %} {% for email in person.emails.all|slice:':1' %}

{% firstof person.emails.all.0.label "Email" %}: {{ person.emails.all.0.address }}

{% endfor %}
{% if object.content %}
{{ object.content|safe }}
{% endif %}

More info

{% endif %}