summaryrefslogtreecommitdiff
path: root/talermerchantdemos/blog/templates/article_refunded.html.j2
blob: d4e405c08c527c309b38a52c3eed4c5b6777b30c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "templates/base.html.j2" %}
{% block main %}

<h2>{{ gettext("Refunded") }}</h2>

<p>
{{
  gettext("Your payment (order ID <tt>{order}<tt>) for the article "{article}" has been refunded.").format(order=order_id,article=article_name)
}}
</p>

<p>
{{
  gettext("You will not be able to read the article until you pay for it again.")
}}
</p>

{% endblock main %}