{% extends "base.html" %} {% block preheader %}Invoice #{{ invoice_number }} for {{ currency }} {{ amount }} from {{ product_name }}{% endblock %} {% block content %}

Invoice #{{ invoice_number }}

{% if user_name %}Hi {{ user_name }},{% else %}Hi there,{% endif %}

Here's your invoice for {{ date }}. Please find the details below.

{% for item in items %} {% endfor %}
Item Qty Price
{{ item.name }} {{ item.qty }} {{ currency }} {{ item.price }}
Total {{ currency }} {{ amount }}
Pay Now

If you have any questions about this invoice, please contact our support team.

{% endblock %}