<%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} ${transfer[2]}
% endif

Totals

Total ${c.total}
Past year ${c.year_total}
Year to date ${c.this_year_total}
Month to date ${c.this_month_total}
Last month ${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)}