{% extends "templates/base.html.j2" %} {% block main %}
{{ gettext("Thank you, {donor}, for donating {amount} to {receiver}.").format(donor=donation_donor,amount=donation_amount,receiver=donation_receiver) }}
{{ gettext("Please keep the order identifier {id} as a receipt for your donation.").format(id=order_id) + gettext('You can show other people that you donated by sharing this link with them.').format(link=request.url) }}
{{ gettext('You can always make another donation.').format(link=url_for('index')) }}
{% endblock main %}