taler-merchant-demos

Python-based Frontends for the Demonstration Web site
Log | Files | Refs | Submodules | README | LICENSE

donations-fulfillment.html.j2 (762B)


      1 {% extends "donations-base.html.j2" %}
      2 
      3 {% block main %}
      4 <h2>{{ gettext("Donation Receipt") }}</h2>
      5 <p>
      6   {{
      7     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)
      8   }}
      9 </p>
     10 <p>
     11   {{
     12     gettext("Please keep the order identifier <strong>{id}</strong> as a receipt for your donation.").format(id=order_id) +
     13     gettext('You can show other people that you donated by sharing <a href="{link}">this link</a> with them.').format(link=request.url)
     14    }}
     15 </p>
     16 
     17 <p class="graybox">
     18   {{
     19      gettext('You can always make <a href="{link}">another donation</a>.').format(link=url_for('index'))
     20   }}
     21 </p>
     22 {% endblock main %}