Created a source directly for purposes of deployment as zip file.

Updated to Python 3.
This commit is contained in:
JohnKent
2020-01-26 14:02:44 -05:00
parent 8bc23dc8b1
commit 3ffbd5ab3d
12 changed files with 33 additions and 262 deletions

View 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 }}