summaryrefslogtreecommitdiff
path: root/talermerchantdemos/blog/templates/article_frame.html.j2
blob: 2690306af15d1dc1c4da6f077b721330a5fc88bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "templates/base.html.j2" %}
{% block main %}
{% include "articles/" + lang + "/" + article_file %}

{% if refundable %}
<hr>
<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>
{% endif %}

{% endblock main %}