summaryrefslogtreecommitdiff
path: root/talermerchantdemos/blog/templates/article_frame.html.j2
blob: a878e95834a977f53799281974639b1ddcb2e65c (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/" + 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 %}