{% extends "base.html" %} {% block content %}

Mortgage Details

Fill these in once you close on your home. Everything calculates automatically.

{% if principal %}
Monthly Payment
${{ base_payment | money }}
Current Balance
${{ "{:,.0f}".format(current_bal) }}
Total Interest (standard)
${{ "{:,.0f}".format(total_interest_standard) }}
Payoff
{{ standard_months }} mo

Payment Strategies

Standard Monthly
Pay ${{ base_payment | money }}/month
Payoff{{ standard_months }} months ({{ (standard_months / 12) | round(1) }} yrs)
Total interest${{ "{:,.2f}".format(total_interest_standard) }}
Interest saved
Biweekly Payments
Pay ${{ (base_payment / 2) | money }} every 2 weeks
Payoff{{ bi_months_total }} months ({{ bi_years }} yrs)
Total interest${{ "{:,.2f}".format(bi_interest) }}
Interest saved ${{ "{:,.2f}".format(interest_saved_biweekly) }} ({{ months_saved_biweekly }} months sooner)
One extra payment per year
{% if extra_monthly > 0 %}
Extra ${{ "%.0f" | format(extra_monthly) }}/Month
Pay ${{ (base_payment + extra_monthly) | money }}/month total
Payoff{{ extra_months }} months ({{ (extra_months / 12) | round(1) }} yrs)
Total interest${{ "{:,.2f}".format(total_interest_extra) }}
Interest saved ${{ "{:,.2f}".format(interest_saved_extra) }} ({{ months_saved_extra }} months sooner)
{% else %}
Extra Monthly Payment
Enter an extra monthly amount above to see the impact
{% endif %}
View Full Amortization Schedule ({{ schedule | length }} payments)
{% for row in schedule %} {% endfor %}
# Date Payment Principal Interest Balance
{{ row.month }} {{ row.date }} ${{ row.payment | money }} ${{ row.principal | money }} ${{ row.interest | money }} ${{ "{:,.2f}".format(row.balance) }}
{% else %}

Enter your mortgage details above once you close on your home and everything will calculate automatically.

{% endif %} {% endblock %}