added a commented out simple debug of totals to help understand bills for now - prob will make this into real table somehow in future

This commit is contained in:
2025-08-31 16:29:29 +10:00
parent 4a7080787b
commit c74383f89e

View File

@@ -21,6 +21,22 @@
<div class="pt-2 containerfluid row">
<h3 align="center">Bill Details (go to <a href="/">Finance Tracker</a>)</h3>
{# DEBUG totals if needed
<table>
{% for bt in total %}
<tr><td></td><td>&nbsp;{{bt}}:</td>
{% for yr in range( 2025, 2032 ) %}
{% if yr in total[bt] %}
<td>
{{total[bt][yr]}}
</td>
{% endif %}
{% endfor %}
</tr>
{% endfor %}
</table>
#}
<div class="mt-4 col-7">
<div class="row align-items-center">
<button id="new-bill-type-button" class="mb-3 px-0 offset-4 col-2 btn btn-success bg-success-subtle text-success" onCLick="StartNewBillType()"><span class="bi bi-plus-lg"> New Bill Type</span></button>