working on order detail page

This commit is contained in:
Thomas Steen Rasmussen 2016-05-29 12:37:14 +02:00
parent f73ff466eb
commit 1cbd958327
1 changed files with 2 additions and 3 deletions

View File

@ -66,11 +66,11 @@
</table>
{% if not order.open == None %}
{% bootstrap_button "Update order" button_type="submit" button_class="btn-primary" name="update_order" %}
{% endif %}
<hr />
<h3>Payment options</h3>
<h3>Payment</h3>
{% if not order.paid %}
<p class="lead">Your order is currently unpaid. Please pick a payment option below.</p>
<p><i>If you have already paid but your order is still showing unpaid,
@ -87,6 +87,5 @@ the other payment methods should be more or less instant.</i></p>
{% else %}
<p class="lead">Your order is paid in full.</p>
{% endif %}
{% endif %}
{% endblock %}