blog-confirm-refund.html.j2 (935B)
1 {% extends "blog-base.html.j2" %} 2 {% block main %} 3 <h1>{{ gettext("Confirm refund request for article") }}</h1> 4 5 <p> 6 {{ 7 gettext("Do you want to get a refund for the article <em>{name}</em>?").format(name=article_name) + "<br/>" + 8 gettext("In this demonstration, refunds will be automatically approved by the merchant.") + "<br/>" + 9 gettext("After you have obtained a refund, you will not be able to read the article anymore.") 10 }} 11 </p> 12 13 <p> 14 {{ 15 gettext ("You will only be able to receive the refund on the same wallet that you have used to pay for this article originally.") 16 }} 17 </p> 18 19 <form action="{{ url_for('refund', order_id=order_id) }}" method="POST"> 20 <input type="text" name="article_name" value={{ article_name}} hidden> 21 <button class="pure-button pure-button-primary" name="submit"> 22 {{ gettext('Request refund') }} 23 </button> 24 </form> 25 {% endblock main %}