blog-article-refunded.html.j2 (543B)
1 {% extends "blog-base.html.j2" %} 2 {% block main %} 3 4 <h2>{{ gettext("Refunded") }}</h2> 5 6 <p> 7 {{ 8 gettext("Your payment (order ID <tt>{order}<tt>) for the article \"{article}\" has been refunded.").format(order=order_id,article=article_name) 9 }} 10 </p> 11 12 <p> 13 {{ 14 gettext("You will not be able to read the article until you pay for it again.") 15 }} 16 <a href="{{ url_for('article', lang=article_lang, article_name=article_name) }}?new_if_refunded=yes" class="articleTitle"> 17 {{ 18 gettext("Click here to pay it again.") 19 }} 20 </a> 21 </p> 22 23 {% endblock main %}