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

Summary

{% include "info" %}

You are connected to {{numAccounts}} other {{SERVICE_NAME|escape}} user{{numAccounts|pluralize}}.

New connections

Here you will find a list of those who have recently invited you to connect with them. You may accept or reject invitations by clicking the links.

{% if receivedOffers %} {% for offer in receivedOffers %} {% endfor %}
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
{% else %}

No new offers of credit received.

{% endif %}

Click here to see invitations I have sent.

{% if rateProposals %} {% for acct in rateProposals %} {% endfor %}
Interest rate-change proposals
Account IDNameInterest RateAction
{{acct.shared_data_id}} {{acct.name|escape}} {{acct.get_shared_data.displayProposedRate}}% accept | reject
{% endif %}

Connect to more people

You must create connection accounts with others in order to send and receive payment.

First, enter the email addresses of people you would like to connect to:

Overall balance & available funds

{% if accountUnits %} {% if convertibleUnits %}
Convert amounts to:
{% endif %}
{% for unit in accountUnits %} {% endfor %}
Account unitsBalanceAvailable for
making payment
Available for
receiving payment
{{unit.long_name|escape}} Accounts {% if unit.display %}{{unit.short_name|escape}} {{unit.displayBalance|myStrFormat:".2f"}}{% else %}--{% endif %} {% if unit.display %}{{unit.displayOutCredit|myStrFormat:".2f"}}{% else %}--{% endif %} {% if unit.display %}{{unit.displayInCredit|myStrFormat:".2f"}}{% else %}--{% endif %}
Totals {{userNode.get_display_units.short_name|escape}} {{totalBalance|myStrFormat:".2f"}} {{totalOutCredit|myStrFormat:".2f"}} {{totalInCredit|myStrFormat:".2f"}}
{% else %}

No accounts yet. Click here to connect to those you trust.

{% endif %}

View and edit your connections.

Recent payments

{% if accountUnits %}

Make a payment to another {{SERVICE_NAME|escape}} user.

{% endif %} {% if payments %} {% include "paymentChart" %} {% else %}

No recent activity

{% endif %}

View past payments

{% if convertibleUnits %} {% endif %} {% endblock %}