{# Year-end tax projection card. Shows placeholder if tax config absent. #}
{% if has_tax_config and projection %}
Year-end tax projection
Dec 31, {{ projection.year }}
${{ "{:,.0f}".format(projection.total_tax) }}
Federal ${{ "{:,.0f}".format(projection.federal_tax) }} · State ${{ "{:,.0f}".format(projection.state_tax) }}
{% if projection.bracket_warnings %}
{% for w in projection.bracket_warnings %}
{{ w }}
{% endfor %}
{% endif %}
Estimate only — single marginal rate.
{% else %}
Year-end tax projection
Set the tax: section in ~/.net_alpha/config.yaml to enable this projection.
Open data hygiene →
{% endif %}