{% 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 %}
Question
Answer
{% if answer_set.nationality %}
Nationality
{{ answer_set.nationality.name }}
{% endif %}
{% if answer_set.country_of_residence %}
Country of Residence
{{ answer_set.country_of_residence.name }}
{% endif %}
{% if answer_set.organisation %}
Organisation
{{ answer_set.organisation }}
{% endif %}
{% if answer_set.organisation_started_date %}
Organisation Started Date
{{ answer_set.organisation_started_date }}
{% endif %}
{% if answer_set.job_title %}
Job Title
{{ answer_set.job_title }}
{% endif %}
{% if answer_set.disciplines %}
Discipline(s)
{{ answer_set.disciplines }}
{% endif %}
{% if answer_set.themes.exists %}
Project Themes
{% for theme in answer_set.themes.all %}
{{ theme }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% for answer in answer_set.question_answers.all %}