[cart] add to cart, update cart

This commit is contained in:
Anand Doshi
2013-06-19 14:57:14 +05:30
parent 60035c9830
commit 3dceb8438e
9 changed files with 203 additions and 127 deletions

View File

@@ -9,9 +9,21 @@
{% block content %}
<div class="col col-lg-12">
<h2>Shopping Cart</h2>
<hr>
<div id="cart-added-items">
<!-- list of items in the cart will be generated using javascript -->
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-info" style="width: 100%;"></div>
</div>
<div id="cart-container" class="hide">
<button class="btn btn-success pull-right" type="button">Place Order</button>
<div class="clearfix"></div>
<hr>
<div id="cart-items">
</div>
<hr>
<div id="cart-taxes">
</div>
<div id="cart-addresses">
</div>
<button class="btn btn-success pull-right" type="button">Place Order</button>
</div>
</div>
{% endblock %}