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

{% if refundable %}
<hr>
<p>
  You don't like this article?  <a href="{{ url_for('confirm_refund', order_id=order_id) }}">Get a refund</a> within
  the first hour after buying it.
</p>
{% endif %}

{% endblock main %}