{% extends "base" %} {% load extratags %} {% block title %}{{SERVICE_NAME|escape}} - Connections{% endblock %} {% block content %}

Connections

{% include "info" %}

Connect to more people

Enter the email addresses of people you would like to offer credit to:

Connection accounts

These are the accounts of connections you have already established on the system. Click the links to view each account individually.

{% if accountCurrencies %} {% for cur in accountCurrencies %} {% for acct in cur.accts %} {% endfor %} {% endfor %}
{{cur.long_name|escape}} accounts
IDNameLower limitBalanceUpper limit
{{acct.get_shared_data.id}} {{acct.name|escape}} -{{acct.iou_limit|myStrFormat:".2f"}} {{acct.balance|myStrFormat:".2f"}} {{acct.get_partner_acct.iou_limit|myStrFormat:".2f"}} details {% if acct.get_shared_data.node_to_confirm_id %}{% ifequal userNode.id acct.get_shared_data.node_to_confirm_id %} (new rate proposed) {% endifequal %}{% endif %}
Totals:-{{cur.lowerLimit|myStrFormat:".2f"}} {{cur.balance|myStrFormat:".2f"}} {{cur.upperLimit|myStrFormat:".2f"}}
{% else %}

No accounts yet. To create accounts, you must invite people to connect with you above.

{% endif %}

Outstanding invitations

These the invitations to connect you have received and sent in the form of a proposed credit limit. You may accept or reject offers you have received, and withdraw offers you have sent.

{% if receivedOffers %} {% for offer in receivedOffers %} {% endfor %} {% else %} {% endif %} {% if sentOffers %} {% for offer in sentOffers %} {% endfor %} {% else %} {% endif %} {% if rateProposals %} {% for acct in rateProposals %} {% endfor %} {% else %} {% endif %}
Offers of credit received
FromAmountInterest RateAction
{{offer.get_initiator.getPrimaryEmail|escape}} {{offer.get_currency.short_name|escape}} {{offer.amount|myStrFormat:".2f"}} {{offer.interest_rate}}% accept | reject
No new offers of credit received.
Offers of credit sent
ToAmountInterest RateAction
{{offer.recipient_email|escape}} {{offer.get_currency.short_name|escape}} {{offer.amount|myStrFormat:".2f"}} {{offer.interest_rate}}% withdraw offer
You have made no recent offers.
Interest rate-change proposals
Account IDNameInterest RateAction
{{acct.shared_data_id}} {{acct.name|escape}} {{acct.get_shared_data.displayProposedRate}}% accept | reject
You have no accounts where your partner has proposed an interest rate change.

Back to Summary

{% endblock %}