{# Year-end tax projection card. Shows placeholder if tax config absent. #}
{% if has_tax_config and projection %}
Projected {{ projection.year }} tax (Dec 31)
${{ "{:,.0f}".format(projection.total_tax) }}
Federal: ${{ "{:,.0f}".format(projection.federal_tax) }} · State: ${{ "{:,.0f}".format(projection.state_tax) }}
{% if projection.bracket_warnings %} {% endif %}
Estimate only — single marginal rate.
{% else %}
Year-end tax projection

Set the tax: section in ~/.net_alpha/config.yaml to enable the projection. Open data hygiene.

{% endif %}