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

People


New Person {% with config.PERSON_LIST_HELP as help_text %} {% if help_text %}
{{ help_text|linebreaks }}
{% endif %} {% endwith %} {% for person in person_list.all %} {% empty %} {% endfor %}
Name
{{ person }} Profile {% if person.user != request.user %} {% if person.pk in existing_relationships %} Update Relationship {% else %} Add Relationship {% endif %} {% endif %}
No records
{% endblock %}