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

View file

@ -66,11 +66,11 @@
</table> </table>
{% if not order.open == None %} {% if not order.open == None %}
{% bootstrap_button "Update order" button_type="submit" button_class="btn-primary" name="update_order" %} {% bootstrap_button "Update order" button_type="submit" button_class="btn-primary" name="update_order" %}
{% endif %}
<hr /> <hr />
<h3>Payment options</h3> <h3>Payment</h3>
{% if not order.paid %} {% if not order.paid %}
<p class="lead">Your order is currently unpaid. Please pick a payment option below.</p> <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, <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 %} {% else %}
<p class="lead">Your order is paid in full.</p> <p class="lead">Your order is paid in full.</p>
{% endif %} {% endif %}
{% endif %}
{% endblock %} {% endblock %}