summaryrefslogtreecommitdiff
path: root/talerdonations/donations/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'talerdonations/donations/templates/index.html')
-rw-r--r--talerdonations/donations/templates/index.html31
1 files changed, 13 insertions, 18 deletions
diff --git a/talerdonations/donations/templates/index.html b/talerdonations/donations/templates/index.html
index 097c781..3ba9638 100644
--- a/talerdonations/donations/templates/index.html
+++ b/talerdonations/donations/templates/index.html
@@ -32,31 +32,26 @@ You are paying with an imaginary currency ({{ merchant_currency }}).
<option value="GNUnet">GNUnet</option>
<option value="Taler">GNU Taler</option>
<option value="Tor">Tor</option>
- <!-- options are added dynamically -->
</select>
<select id="taler-donation" name="donation_amount">
- <option value="0.1">0.1 {{ merchant_currency }}</option>
- <option value="1">1 {{ merchant_currency }}</option>
- <option value="6">5 {{ merchant_currency }}</option>
- <option value="10">10 {{ merchant_currency }}</option>
+ <option value="{{ merchant_currency }}:0.1">0.1 {{ merchant_currency }}</option>
+ <option value="{{ merchant_currency }}:1">1 {{ merchant_currency }}</option>
+ <option value="{{ merchant_currency }}:6">5 {{ merchant_currency }}</option>
+ <option value="{{ merchant_currency }}:10">10 {{ merchant_currency }}</option>
</select>
- <input type="submit" class="pure-button pure-button-primary" value="Donate!"/>
+ <input type="text" name="donation_donor" value="Anonymous" />
+ <input type="submit" class="pure-button pure-button-primary" value="Donate!" />
</div>
</form>
<p>
- (*) To make it a bit more fun, the 5 KUDOS option
- is deliberately implemented with a fault: the merchant will try to
- make you donate 6 KUDOS instead of the 5 KUDOS you got to see. But do
- not worry, you will be given the opportunity to review the
- final offer from the merchant in a window secured
- by the Taler extension. That way, you can spot the
- error before committing to an incorrect contract.
+ (*) To make it a bit more fun, the 5 {{ merchant_currency }} option is
+ deliberately implemented with a fault: the merchant will try to make you
+ donate 6 {{ merchant_currency} instead of the 5 {{ merchant_currency }} you
+ got to see. But do not worry, you will be given the opportunity to review
+ the final offer from the merchant in a window secured by the Taler
+ extension. That way, you can spot the error before committing to an
+ incorrect contract.
</p>
</div>
-<!-- <h2>Back-office interface</h2> -->
-<!--p>Try the <a href="backoffice">back-office</a>, in order to track
-orders and corresponding deposits.
-</p Depends on #4992 -->
-
{% endblock %}