This commit is contained in:
Steve Waterworth
2018-02-02 09:50:17 +00:00
parent 7dfa988a25
commit 8ff6f72cce
4 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
<!-- shopping cart --> <!-- shopping cart -->
<div ng-contoller="cartform"> <div>
Shopping cart for {{ data.uniqueid }} Shopping cart for {{ data.uniqueid }}
<div ng-if="data.cart.total == 0"> <div ng-if="data.cart.total == 0">
Your cart is empty, get shopping Your cart is empty, get shopping

View File

@@ -1,5 +1,5 @@
<!-- login / register --> <!-- login / register -->
<div ng-controller="loginform"> <div>
<div class="message"> <div class="message">
{{ data.message }} {{ data.message }}
</div> </div>

View File

@@ -1,5 +1,5 @@
<!-- payment template --> <!-- payment template -->
<div ng-controller="paymentform"> <div>
<h3>Review your order</h3> <h3>Review your order</h3>
<div ng-if="data.cart.total != 0"> <div ng-if="data.cart.total != 0">
<table> <table>

View File

@@ -1,5 +1,5 @@
<!-- product details --> <!-- product details -->
<div ng-controller="productform"> <div>
<div class="message"> <div class="message">
{{ data.message }} {{ data.message }}
</div> </div>