{% extends "base.html" %} {% block title %}Credit Card Payoffs - BiweeklyBudget{% endblock %} {% block extra_head_css %} {% endblock %} {% block body %} {% macro payoffresult(res) -%}
Account | Next Payment | Time To Pay Off | Total Payments | Total Interest |
---|---|---|---|---|
{{ row['name'] }} | {{ row['next_payment']|dollars }} | {{ row['payoff_months']|monthsyears }} | {{ row['total_payments']|dollars }} | {{ row['total_interest']|dollars }} |
Totals | {{ res['total']['next_payment']|dollars }} | {{ res['total']['payoff_months']|monthsyears }} | {{ res['total']['total_payments']|dollars }} | {{ res['total']['total_interest']|dollars }} |
Notice - these calculations are rough estimates only. Do not rely on them.