Christ the king's contribution statement show totals for each account a person contributed to. 
Is there lava I can add to show a Grand Total?
{% for accountsummary in AccountSummary %}
<div class="row">
<div class="col-xs-6">{{ accountsummary.AccountName }}</div>
<div class="col-xs-6 text-right">{{ accountsummary.Total | FormatAsCurrency }}</div>
</div>
{% endfor %}