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

Organisation Relationship


Update Relationship
{% if relationship.is_current %}
End Relationship
{% endif %}

Source

{{ relationship.source }}

Profile

Target

{{ relationship.target }}

Profile

{% with relationship.current_answers as answer_set %} {% if answer_set is None %}
This relationship has ended. You can start it again by updating it.
{% else %} {% for answer in answer_set.question_answers.all %} {% empty %} {% endfor %}
Question Answer
{{ answer.question }} {{ answer }}
No records

Last updated: {{ answer_set.timestamp }}

{% endif %} {% endwith %} {% endblock %}