{% 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 invoice.get_next_billing_date %}
  • {% trans 'Your credit card will be billed on ' %}{{ invoice.get_next_billing_date|date:"F j, Y" }} ${{ invoice.get_next_billing_price }}
  • {% endif %}