{% 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 %}
{% include 'people/person/includes/answer_set.html' %}
{% endwith %}
Update
{% if person.user == request.user %}
Change Password
{% endif %}
{% endif %}
Relationships As Source
Contact Name
{% for relationship in person.relationships_as_source.all %}