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

{{ article_contents | safe }}

<hr>

{% if refundable %}
<p class="graybox">
  {{
    gettext("Taler allows merchants to offer refunds to customers.") +
    gettext('You can <a href="{url}">request a refund</a> within the first hour after buying this article.').format(url=url_for('confirm_refund', lang='en', order_id=order_id))
  }}
</p>
{% else %}
{{ gettext("Taler allows merchants to offer refunds to customers.") }}
{{ gettext("This article can't be refunded anymore.") }}
{% endif %}

{% endblock main %}