Created a source directly for purposes of deployment as zip file.
Updated to Python 3.
This commit is contained in:
49
mortgage/templates/statement.text.jinja
Normal file
49
mortgage/templates/statement.text.jinja
Normal file
@@ -0,0 +1,49 @@
|
||||
Original Principal Balance: {{ original_principal_balance }}
|
||||
|
||||
Payment History
|
||||
#\tBill Date
|
||||
Payment Date
|
||||
Days of Interest
|
||||
Payment Amount
|
||||
Principal Payment
|
||||
Interest Payment
|
||||
New Balance
|
||||
|
||||
{% for item in past_payments %}
|
||||
{{ item.payment_number }}
|
||||
{{ item.bill_date }}
|
||||
{{ item.payment_date }}
|
||||
{{ item.days_of_interest }}
|
||||
{{ item.payment_amount }}
|
||||
{{ item.principal_payment }}
|
||||
{{ item.interest_payment }}
|
||||
{{ item.new_balance }}
|
||||
|
||||
{% if item.print_interest_total %}
|
||||
{{ item.interest_total_message }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
Total interest paid to date is {{ total_interest_paid_to_date }}.
|
||||
|
||||
|
||||
Remaining Amortization
|
||||
#
|
||||
Days of Interest
|
||||
Due Date
|
||||
Payment Amount
|
||||
Scheduled Principal Payment
|
||||
Scheduled Interest Payment
|
||||
Expected New Balance
|
||||
|
||||
{% for item in future_payments %}
|
||||
{{ item.payment_number }}
|
||||
{{ item.days_of_interest }}
|
||||
{{ item.payment_date }}
|
||||
{{ item.payment_amount }}
|
||||
{{ item.principal_payment }}
|
||||
{{ item.interest_payment }}
|
||||
{{ item.new_balance }}
|
||||
{% endfor %}
|
||||
|
||||
Balloon Payment Due: {{ balloon_payment }}
|
||||
|
||||
Reference in New Issue
Block a user