summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-01-22 14:05:11 +0100
committerFlorian Dold <florian.dold@gmail.com>2018-01-22 14:05:11 +0100
commit717fc3dfeee7df43c1247bdd7dcedccfac2d273c (patch)
treeea6a088cc59267759b2a114c586146902563e5c6
parentc4130cfbd924ce4f75d23a7af34438459f10f4f6 (diff)
downloaddonations-717fc3dfeee7df43c1247bdd7dcedccfac2d273c.tar.gz
donations-717fc3dfeee7df43c1247bdd7dcedccfac2d273c.tar.bz2
donations-717fc3dfeee7df43c1247bdd7dcedccfac2d273c.zip
mention donor name in receipt
-rw-r--r--talerdonations/donations/templates/base.html8
-rw-r--r--talerdonations/donations/templates/fulfillment.html3
-rw-r--r--talerdonations/donations/templates/index.html2
3 files changed, 3 insertions, 10 deletions
diff --git a/talerdonations/donations/templates/base.html b/talerdonations/donations/templates/base.html
index ecf8094..60f17da 100644
--- a/talerdonations/donations/templates/base.html
+++ b/talerdonations/donations/templates/base.html
@@ -41,14 +41,6 @@
</div>
<section id="main" class="content">
- <a href="{{ url_for('index') }}">
- <div id="logo">
- <svg height="100" width="100">
- <circle cx="50" cy="50" r="40" stroke="darkcyan" stroke-width="6" fill="white" />
- <text x="19" y="82" font-family="Verdana" font-size="90" fill="darkcyan">S</text>
- </svg>
- </div>
- </a>
{% block main %}
This is the main content of the page.
{% endblock %}
diff --git a/talerdonations/donations/templates/fulfillment.html b/talerdonations/donations/templates/fulfillment.html
index 67e56ff..e0c05a6 100644
--- a/talerdonations/donations/templates/fulfillment.html
+++ b/talerdonations/donations/templates/fulfillment.html
@@ -1,7 +1,8 @@
{% extends "templates/base.html" %}
{% block main %}
-<p> Thanks for donating <strong>{{ donation_amount }} {{ currency }}</strong> to <strong>{{ donation_receiver }}</strong>.</p>
+<h1>Donation Receipt</h1>
+<p> Thanks you, <strong>{{ donation_donor }}</strong>, for donating <strong>{{ donation_amount }}</strong> to <strong>{{ donation_receiver }}</strong>.</p>
<p>Please keep the order identifier <strong>{{ order_id }}</strong> as a receipt for your donation.</p>
{% endblock main %}
diff --git a/talerdonations/donations/templates/index.html b/talerdonations/donations/templates/index.html
index c9b08f1..a462dc3 100644
--- a/talerdonations/donations/templates/index.html
+++ b/talerdonations/donations/templates/index.html
@@ -39,7 +39,7 @@ You are paying with an imaginary currency ({{ merchant_currency }}).
<option value="{{ merchant_currency }}:6">5 {{ merchant_currency }}</option>
<option value="{{ merchant_currency }}:10">10 {{ merchant_currency }}</option>
</select>
- <input type="text" name="donation_donor" value="Anonymous" />
+ <input type="text" name="donation_donor" value="Anonymous Donor" />
<input type="submit" class="pure-button pure-button-primary" value="Donate!" />
</div>
</form>