{# 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
Tell net-alpha your filing status and tax rates and it'll project this year's tax bill from your realized gains. See the Tax page for the one-time setup snippet.
{% endif %}