summaryrefslogtreecommitdiff
path: root/talermerchantdemos/donations/templates/fulfillment.html.j2
blob: df9f30b0e26e6c4aed4486528db5a30ec9c7658d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "templates/base.html.j2" %}

{% block main %}
<h1>{{ gettext("Donation Receipt") }}</h1>
<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>
  {{
     gettext('You can always make <a href="{link}">another donation</a>.').format(link=url_for('index'))
  }}
</p>
{% endblock main %}