summaryrefslogtreecommitdiff
path: root/talermerchantdemos/donations/templates/fulfillment.html
blob: 17d8cd8ceebfdf1e5aabf96afb998bef4c08aa38 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "templates/base.html" %}

{% block main %}
<h1>Donation Receipt</h1>
<p> Thank you, <strong>{{ donation_donor }}</strong>, for donating <strong>{{ donation_amount }}</strong> to <strong>{{ donation_receiver }}</strong>.</p>

<p>Please keep the order identifier <strong>{{ order_id }}</strong> as a receipt for your donation.  You can show other people that you donated
by sharing <a href={{ request.url }}>this link</a> with them.</p>

<p>You can always make <a href="{{ url_for('index') }}">another donation</a></p>
{% endblock main %}