summaryrefslogtreecommitdiff
path: root/talermerchantdemos/blog/templates/confirm_refund.html.j2
blob: 09f3730268df89b1bb2c43ea57656d2a488760d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "templates/base.html.j2" %}
{% block main %}
  <h1>{{ gettext("Confirm refund request for article"))</h1>

  <p>
    {{
       gettext("Do you want to get a refund for the article <em>{name}</em>?").format(name=article_name) +
       gettext("After you have requested a refund, you won't be able to read the article anymore.")
    }}
  </p>

  <p>
    {{
      gettext ("You will only be able to receive the refund on the same wallet that you have used to pay for this article originally.")
    }}
  </p>

  <form action="{{ url_for('refund', order_id=order_id) }}" method="POST">
    <input type="text" name="article_name" value={{ article_name}} hidden>
    <input type="submit" value="Request refund">
  </form>
{% endblock main %}