summaryrefslogtreecommitdiff
path: root/talermerchantdemos/blog/templates/article_refunded.html.j2
blob: 34e0a0b3c47d3a154a5add15b48b7ae3303a2756 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% 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 won't be able to view it until you pay for it again.") }}
</p>

{% endblock main %}