diff --git a/rowers/templates/invoice.html b/rowers/templates/invoice.html new file mode 100644 index 00000000..1c084d14 --- /dev/null +++ b/rowers/templates/invoice.html @@ -0,0 +1,16 @@ +{% extends "emailbase.html" %} + +{% block body %} +
Dear {{ first_name }},
+ +
This is the confirmation of your purchase on Rowsandall.
+ +Order ID: {{ invoice.transaction_id }}
+User: {{ invoice.rower }}
+Amount: {{ invoice.amount }} €
+ +Thank you for your purchase!
+ +Best regards, the Rowsandall team
+
+{% endblock %}