{% block body %}
{% if entity.picturepath == null %}
{% endif %} {% if entity.picturepath != null %}
{% endif %}
{{ entity.name }} {{ entity.middlename }} {{ entity.firstlastname }}
{{ entity.professionaltitle }}
Username:
{{ entity.username }}
Date of Birth:
{{ entity.dateofbirth|date('d-m-Y') }}
Phone Number:
{{ entity.telephone}}
Email:
{{ entity.email }}
{% if entity.enabled == 1 %}
Status:
Enabled
{% endif %} {% if entity.enabled == 0 %}
Status:
Disabled
{% endif %}
Address Information
{% for a in address %}
City/Town:
{{ a.citytown}}
Country:
{{ a.longname}}
{% endfor %} {% endblock %}