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:
@@ -21,6 +21,22 @@
|
|||||||
<div class="pt-2 containerfluid row">
|
<div class="pt-2 containerfluid row">
|
||||||
<h3 align="center">Bill Details (go to <a href="/">Finance Tracker</a>)</h3>
|
<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> {{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="mt-4 col-7">
|
||||||
<div class="row align-items-center">
|
<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>
|
<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>
|
||||||
|
|||||||
Reference in New Issue
Block a user