{% extends 'base.html' %} {% block content %}

{{ person.name }}


{% if person.user == request.user or request.user.is_superuser %} {% if person.user != request.user and request.user.is_superuser %}
NB: You are able to see the details of this person because you are an admin. Regular users are not able to see this information for people other than themselves.
{% endif %} {% with person.current_answers as answer_set %}
{% if answer_set.nationality %} {% endif %} {% if answer_set.country_of_residence %} {% endif %} {% if answer_set.organisation %} {% endif %} {% if answer_set.organisation_started_date %} {% endif %} {% if answer_set.job_title %} {% endif %} {% if answer_set.disciplines %} {% endif %} {% if answer_set.themes.exists %} {% endif %} {% for answer in answer_set.question_answers.all %} {% empty %} {% endfor %}
Question Answer
Nationality{{ answer_set.nationality.name }}
Country of Residence{{ answer_set.country_of_residence.name }}
Organisation{{ answer_set.organisation }}
Organisation Started Date{{ answer_set.organisation_started_date }}
Job Title{{ answer_set.job_title }}
Discipline(s){{ answer_set.disciplines }}
Project Themes {% for theme in answer_set.themes.all %} {{ theme }}{% if not forloop.last %}, {% endif %} {% endfor %}
{{ answer.question }} {{ answer }}
No records

Last updated: {{ answer_set.timestamp }}

{% endwith %} Update {% if person.user == request.user %} Change Password {% endif %} {% endif %}

Relationships As Source

{% for relationship in person.relationships_as_source.all %} {% empty %} {% endfor %}
Contact Name
{{ relationship.target }} Profile Relationship Detail
No known relationships
New Relationship

Relationships As Target

{% for relationship in person.relationships_as_target.all %} {% empty %} {% endfor %}
Contact Name
{{ relationship.source }} Profile Relationship Detail
No known relationships

Activities

{% for activity in person.activities.all %} {% empty %} {% endfor %}
Name
{{ activity }} Details
No records
{% endblock %}