From ad1b10c27416d432b2a962c3d4f620b19314c433 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Mon, 11 Nov 2024 14:43:03 +0100 Subject: [PATCH] nofakturoid v1 --- rowers/templates/invoice.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 rowers/templates/invoice.html 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 %}