summaryrefslogtreecommitdiff
path: root/talermerchantdemos/donations/templates/fulfillment.html.j2
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-04-21 21:07:18 +0200
committerFlorian Dold <florian@dold.me>2021-04-21 21:07:18 +0200
commit2b84f3bd5de3a500b63193924bea2f3dfd0c9afd (patch)
tree08d5a2bd354ab7849d731eabe7b132429b6d2225 /talermerchantdemos/donations/templates/fulfillment.html.j2
parent4356540b2eb12b2c307270566b0b4ce969e12c60 (diff)
downloadtaler-merchant-demos-2b84f3bd5de3a500b63193924bea2f3dfd0c9afd.tar.gz
taler-merchant-demos-2b84f3bd5de3a500b63193924bea2f3dfd0c9afd.tar.bz2
taler-merchant-demos-2b84f3bd5de3a500b63193924bea2f3dfd0c9afd.zip
common base template, new logo and lots of cleanup
Diffstat (limited to 'talermerchantdemos/donations/templates/fulfillment.html.j2')
-rw-r--r--talermerchantdemos/donations/templates/fulfillment.html.j222
1 files changed, 0 insertions, 22 deletions
diff --git a/talermerchantdemos/donations/templates/fulfillment.html.j2 b/talermerchantdemos/donations/templates/fulfillment.html.j2
deleted file mode 100644
index 5fd799b..0000000
--- a/talermerchantdemos/donations/templates/fulfillment.html.j2
+++ /dev/null
@@ -1,22 +0,0 @@
-{% extends "templates/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 %}