{% extends 'base.html' %}
{% block content %}
{{ person }}
{% if person.gender %}
- Gender
- {{ person.get_gender_display }}
{% endif %}
{% if person.age_group %}
- Age Group
- {{ person.get_age_group_display }}
{% endif %}
{% if person.nationality %}
- Nationality
- {{ person.nationality.name }}
{% endif %}
{% if person.country_of_residence %}
- Country of Residence
- {{ person.country_of_residence.name }}
{% endif %}
{% if person.organisation %}
- Organisation
- {{ person.organisation }}
{% endif %}
{% if person.job_title %}
- Job Title
- {{ person.job_title }}
{% endif %}
{% if person.role %}
- Role
- {{ person.role }}
{% endif %}
{% if person.dispipline %}
- Discipline
- {{ person.discipline }}
{% endif %}
{% if person.themes.exists %}
- Project Themes
-
{% for theme in person.themes.all %}
{{ theme }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
Update
Relationships As Source
| Contact Name |
|
|
{% for relationship in person.relationships_as_source.all %}
| {{ relationship.target }} |
Profile
|
Relationship Detail
|
{% empty %}
| No known relationships |
{% endfor %}
New Relationship
Relationships As Target
| Contact Name |
|
|
{% for relationship in person.relationships_as_target.all %}
| {{ relationship.source }} |
Profile
|
Relationship Detail
|
{% empty %}
| No known relationships |
{% endfor %}
Activities
| Name |
{% for activity in person.activities.all %}
| {{ activity }} |
Details
|
{% empty %}
| No records |
{% endfor %}
{% endblock %}