{% 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 }}

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