summaryrefslogtreecommitdiff
path: root/talermerchantdemos/templates/donations-fulfillment.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'talermerchantdemos/templates/donations-fulfillment.html.j2')
-rw-r--r--talermerchantdemos/templates/donations-fulfillment.html.j222
1 files changed, 22 insertions, 0 deletions
diff --git a/talermerchantdemos/templates/donations-fulfillment.html.j2 b/talermerchantdemos/templates/donations-fulfillment.html.j2
new file mode 100644
index 0000000..b49b7dc
--- /dev/null
+++ b/talermerchantdemos/templates/donations-fulfillment.html.j2
@@ -0,0 +1,22 @@
+{% extends "donations-base.html.j2" %}
+
+{% block main %}
+<h2>{{ gettext("Donation Receipt") }}</h2>
+<p>
+ {{
+ gettext("Thank you, <strong>{donor}</strong>, for donating <strong>{amount}</strong> to <strong>{receiver}</strong>.").format(donor=donation_donor,amount=donation_amount,receiver=donation_receiver)
+ }}
+</p>
+<p>
+ {{
+ gettext("Please keep the order identifier <strong>{id}</strong> as a receipt for your donation.").format(id=order_id) +
+ gettext('You can show other people that you donated by sharing <a href="{link}">this link</a> with them.').format(link=request.url)
+ }}
+</p>
+
+<p class="graybox">
+ {{
+ gettext('You can always make <a href="{link}">another donation</a>.').format(link=url_for('index'))
+ }}
+</p>
+{% endblock main %}