<%inherit file="/base.mako"/>

Settling Transfers

% if len(c.settle) == 0:

No need! The books are balanced!

% else:

To balance the books, the following transfers need to be made:

% for transfer in c.settle: % endfor
From To Amount
${transfer[0].username} ${transfer[1].username} $${h.round_currency(transfer[2])}
% endif

Totals

Total $${h.round_currency(c.total)}
Past year $${h.round_currency(c.year_total)}
Year to date $${h.round_currency(c.this_year_total)}
Month to date $${h.round_currency(c.this_month_total)}
Last month $${h.round_currency(c.last_month_total)}

Add a new transaction

Your History

${h.link_to('See all history', h.url_for(controller='history', action='index'))}

Expenditures

${self.listExpenditures(c.expenditures)}

Transfers

${self.listTransfers(c.transfers)}