summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-31 11:28:52 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-31 11:28:52 +0200
commitb930b68594ba862ec68729165e7290bea3c5d1ee (patch)
tree028868ba9fb7ac66a400b72b7451365ef0f04a1b
parent11fa951b154cbd74457f67cf32ece164a2cd4e92 (diff)
downloadblog-b930b68594ba862ec68729165e7290bea3c5d1ee.tar.gz
blog-b930b68594ba862ec68729165e7290bea3c5d1ee.tar.bz2
blog-b930b68594ba862ec68729165e7290bea3c5d1ee.zip
missing file
-rw-r--r--talerblog/blog/templates/confirm_refund.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/talerblog/blog/templates/confirm_refund.html b/talerblog/blog/templates/confirm_refund.html
new file mode 100644
index 0000000..10aaa74
--- /dev/null
+++ b/talerblog/blog/templates/confirm_refund.html
@@ -0,0 +1,19 @@
+{% extends "templates/base.html" %}
+{% block main %}
+ <h1>Refund Article?</h1>
+
+ <p>
+ Do you want to get a refund for the article <em>{{ article_name }}</em>? After you've requested a refund,
+ you won't be able to read the article anymore.
+ </p>
+
+ <p>
+ You will only be able to receive the refund on the same wallet that you've 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 %}