{% load i18n %}

{{ person.first_name }} {{ person.last_name }}

{% trans "Born on" %} {{ person.birthdate }}

{% trans "Address" %}

{% trans "Address:" %} {{ person.address }}

{% if person.phone or person.cellphone or person.email %}

{% trans "Contact" %}

{% if person.phone %}

{% trans "Phone:" %} {{ person.phone }}

{% endif %} {% if person.cellphone %}

{% trans "Cellphone:" %} {{ person.cellphone }}

{% endif %} {% if person.email %}

{% trans "Email:" %} {{ person.email }}

{% endif %} {% endif %}