{% load base_filters %} {% load i18n %}
| {% trans "Method" %} | {{ payment_method }} |
| {% trans "Adjustment" %} | {{ invoice.variance|format_currency }} |
| {% trans "Sub Total:" %} | {{ invoice.subtotal|format_currency }} |
| {% trans "Tax:" %} | {{ invoice.tax|format_currency }} |
| {% trans "Total:" %} | {{ invoice.total|format_currency }} |
| {% trans "Payments/Credits:" %} | {{ invoice.payments_credits|format_currency }} |
| {% trans "Balance due:" %} | {{ invoice.balance|format_currency }} |
| {% if invoice.balance > 0 and merchant_login %} {% trans "Pay Invoice" %} {% endif %} | |