From c43b2754944f124697cacdb81ebe3a1668575a20 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Sun, 29 May 2016 15:44:27 +0200 Subject: [PATCH] wording on order detail page --- shop/templates/order_detail.html | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/shop/templates/order_detail.html b/shop/templates/order_detail.html index 4aa9f5ef..1f3baa0d 100644 --- a/shop/templates/order_detail.html +++ b/shop/templates/order_detail.html @@ -73,17 +73,20 @@

Payment

{% if not order.paid %}

Your order is currently unpaid. Please pick a payment option below.

-

If you have already paid but your order is still showing unpaid, -you can email us or use the -contact page for other options. -Please allow for up to a week for bank transfers to be registered, -the other payment methods should be more or less instant.

+

Once you go to the payment your order will be finalized and you +will no longer be able to change the products or quantities - so make sure +your order is correct before proceeding!

{% csrf_token %} {% bootstrap_button " Credit card" button_type="submit" button_class="btn-primary" name="payment_method" value="credit_card" %} {% bootstrap_button " Blockchain" button_type="submit" button_class="btn-primary" name="payment_method" value="blockchain" %} {% bootstrap_button " Bank transfer" button_type="submit" button_class="btn-primary" name="payment_method" value="bank_transfer" %}
+

If you have already paid but your order is still showing unpaid, +you can email us or use the +contact page for other options. +Please allow for up to a week for bank transfers to be registered, +the other payment methods should be more or less instant.

{% else %}

Your order is paid in full.

{% endif %}