{% extends "report_base.html" %} {% load ledger %} {% block title %} {{ project.name }} Statement {% endblock %} {% block header %} {{ project.name }} Statement {% endblock %} {% block meta %}
Date: {% now "m/d/Y" %}
{% endblock %} {% block content %} {% for tran in debits %} {% endfor %} {% for tran in credits %} {% endfor %}
Invoices
{{ tran.exchange.date|date:"m/d/Y" }} {{ tran.memo }} ${{ tran.total|currency }}
Total ${{ debit_total|currency }}
 
Payments Received
{{ tran.exchange.date|date:"m/d/Y" }} {{ tran.memo }} ${{ tran.total|currency }}
Total ${{ credit_total|currency }}
 
Outstanding Balance ${{ outstanding_balance|currency }}
{% endblock %}