20 lines
896 B
Plaintext
20 lines
896 B
Plaintext
bills:
|
|
* bill for the year (when removed from LE, should be dynamic)
|
|
- REQUIRES REWRITE OF BILLS TO BE HEADLESS and then called from UI/maybe more ajax
|
|
- noting BUT also requires above
|
|
|
|
* bills html, and growth types are poor code repetition / lame... could I do something more like:
|
|
{% for gt in growth %}
|
|
{% if gt.name == 'Min' %}
|
|
<option value='min'
|
|
{% if bt.which_growth == gt.name %}selected{% endif %}
|
|
>{{'%.2f'|format(bt.ann_growth_min)}}% {{gt.name}}</option>
|
|
|
|
CALC:
|
|
* if I quit at different times of the financial year, technically the amount I earn will be taxed
|
|
differently, but hard to calc - slides around with tax brackets in future
|
|
|
|
* still get double health insurance bills sometimes (just viewing a new date might trigger this??? or at least when I changed years)
|
|
|
|
UI:
|