{% load i18n %}

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

{% if person.birthdate %}

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

{% endif %}

{% trans "Address" %}

{{ person.address }}

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

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

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

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

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

{% trans "Email:" %}

{% endif %}
{% endif %}