Facture {{ invoice_number }}

Date: {{ invoice_date }}

Informations Client

Nom: {{ customer_name }}

Email: {{ customer_email }}

Adresse: {{ customer_address }}

Articles

{% for item in items %} {% endfor %}
Nom de l'article Quantité Prix unitaire Total
{{ item.item_name }} {{ item.quantity }} {{ item.unit_price }} {{ item.quantity * item.unit_price }}

Montant Total: {{ total_amount }}