{% extends "base.html" %} {% block content %}
| Account | Owner | Balance | |
|---|---|---|---|
| {{ acc.name }} | {{ acc.owner }} | ||
| Total Cash | ${{ total_cash | money }} | ||
| {{ f.name }} | ${{ (f.balance or 0) | money }} |
| Total | ${{ total_sinking | money }} |
| {{ car.display_name }} | {{ car.owner }} | {% if car.estimated_value %} ${{ car.estimated_value | float | money }} {% else %} no value set {% endif %} |
| Total | ${{ total_vehicles | money }} | |
| {{ a.name }} | {{ a.category }} | ${{ a.value | float | money }} |
| Total | ${{ total_other_assets | money }} | |
| {{ d.name }} | {{ d.owner }} | ${{ d.current_balance | float | money }} |
| Subtotal | ${{ debt_cat_totals[cat] | money }} | |