{% load static %}
{% block document_issuer %}
Issuer: {{ provider.billing_name }}{{ provider.address_1 }} |
{% block document_customer %}
Customer: {{ customer.billing_name }}
{% if customer.sales_tax_number %}
{{ customer.sales_tax_number }} |
{% if transaction.state == transaction.States.Initial %}
{% block form %}
{{ transaction.amount }} {{ transaction.currency }}
{{ form }}
{% endblock %}
{% else %}
{% block transaction %}
The payment is {{ transaction.state }}.
{% endblock %}
{% endif %}
|
# | Service | Unit | Qty. | Unit Price | Total Amount |
---|---|---|---|---|---|
{{ forloop.counter }} | {{ entry.description }} | {{ entry.unit }} | {{ entry.quantity|floatformat:-2 }} | {{ entry.unit_price|floatformat:2 }} {{ document.currency }} | {{ entry.total|floatformat:2 }} {{ document.currency }} |
Amount paid
* this may not represent document's total amount |
{{ transaction.amount }} {{ transaction.currency }} | ||||
Total amount |
{{ document.total|floatformat:2 }} {{ document.currency }} |