{% load i18n %}
  • {% trans 'Subtotal' %} ${{ invoice.calculate_subtotal|default_if_none:"0.00"|floatformat:2 }}
  • {% if invoice.get_discounts %}
  • {% trans 'Discount Applied' %} -${{ invoice.get_discounts|default_if_none:"0.00"|floatformat:2 }}
  • {% endif %}
  • {% 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 }}
  • {% if future_billing_info %} {% for billing_date, billing_total in invoice.get_billing_dates_and_prices.items %}
  • {% trans 'Your credit card will be billed on ' %}{{ billing_date|date:"F j, Y" }} ${{ billing_total|default_if_none:"0.00"|floatformat:2 }}
  • {% endfor %} {% endif %}