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

Pending connections:

{% for connection in pending_connections %}
{{connection.apartment.address}}, {{connection.apartment.city}}
{{connection.date_created}}

{{connection.apartment.about}}

{{connection.apartment.num_of_rooms}} rooms | {{connection.apartment.num_of_roomates}} roommates
{{connection.apartment.rent}} per month
This connection request has yet to be approved
{% endfor %}

Active connections:

{% for connection in approved_connections %}
{{connection.apartment.address}}, {{connection.apartment.city}}
{{connection.date_created}}

{{connection.apartment.about}}

{{connection.apartment.num_of_rooms}} rooms | {{connection.apartment.num_of_roomates}} roommates
{{connection.apartment.rent}} per month
Click to view apartment details Chat!
{% endfor %}
{% endblock %}