{% load i18n %}
  • {% trans 'Subtotal' %} ${{ invoice.subtotal|default_if_none:"0.00"|floatformat:2 }}
  • {% trans 'Estimated Shipping' %} ${{ invoice.shipping|default_if_none:"0.00"|floatformat:2 }}
  • {% trans 'Estimated Tax' %} ${{ invoice.tax|default_if_none:"0.00"|floatformat:2 }}

  • {% with currency=invoice.get_currency_display %} {% blocktrans %}Total ({{ currency }}) {% endblocktrans %} {% endwith %} ${{ invoice.total|default_if_none:"0.00"|floatformat:2 }}