summaryrefslogtreecommitdiff
path: root/talermerchantdemos/blog/templates/article_frame.html.j2
blob: b5763e418ad3203615999b3d1546c7a2d4ebfd41 (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>
  {{
    gettext("You did not like this article?") +
    gettext('You can <a href="{url}">request a refund</a> within the first hour after buying it.').format(url=url_for('confirm_refund', lang='en', order_id=order_id))
  }}
</p>
{% endif %}

{% endblock main %}