{% extends "main/base_template.html" %} {% block title %}Roo.me - Contacts{% endblock %} {% block content %}

Pending connections:

{% for connection in pending_connections %}
{{connection.seeker.base_user.first_name}} {{connection.seeker.base_user.last_name}}
{{connection.date_created}}

{{connection.seeker.about}}

Approve! Decline!

You can approve or decline this connection

{% endfor %}

Active connections:

{% for connection in approved_connections %}
{{connection.seeker.base_user.first_name}} {{connection.seeker.base_user.last_name}}
{{connection.date_created}}

{{connection.seeker.about}}

Remove! Chat!

This connection is in progress

{% endfor %}
{% endblock %}