{{ person.name }}
{% if person.is_primary %}
Primary
{% endif %}
{% if person.person_type %}
Type
{{ person.person_type|title }}
{% endif %}
{% if person.designation or person.department %}
Company Contact Details
{% if person.designation %}{{ person.designation }}{% endif %}
{% if person.department %}{{ person.department }}{% endif %}
{% endif %}
{% if person.position or person.work_details %}
Individual Work Details
{% if person.position %}{{ person.position }}{% endif %}
{% if person.work_details %}{{ person.work_details }}{% endif %}
{% endif %}
Emails
{% for email in person.emails.all %}
{{ email.email }}
{% empty %}
No emails
{% endfor %}
Mobile Numbers
{% for mobile in person.mobiles.all %}
{{ mobile.mobile_number }}
{% empty %}
No mobiles
{% endfor %}
Profile Links
{% for profile in person.profile_links.all %}
{{ profile.label }}
{% empty %}
No profile links
{% endfor %}
Availability
{% if item.availability_type == "specific" %}
Specific Time
{% if item.timezone %}
{{ item.timezone }}
{% endif %}
{% if item.days %}
{% for day in item.days %}
{{ day|title }}
{% endfor %}
{% endif %}
{% if item.start_time or item.end_time %}
{% if item.start_time %}{{ item.start_time|time:"h:i A" }}{% else %}--{% endif %}
-
{% if item.end_time %}{{ item.end_time|time:"h:i A" }}{% else %}--{% endif %}
{% endif %}
{% else %}
Anytime
{% endif %}
{% endwith %}
{% empty %}