Anand Doshi | ab69029 | 2013-06-13 11:21:35 +0530 | [diff] [blame] | 1 | {% extends "app/website/templates/html/page.html" %} |
2 | |||||
3 | {% block javascript %} | ||||
4 | {% include "app/website/templates/js/cart.js" %} | ||||
5 | {% endblock %} | ||||
6 | |||||
7 | {% set title="Shopping Cart" %} | ||||
8 | |||||
9 | {% block content %} | ||||
10 | <div class="col col-lg-12"> | ||||
11 | <h2>Shopping Cart</h2> | ||||
12 | <hr> | ||||
13 | <div id="cart-added-items"> | ||||
14 | <!-- list of items in the cart will be generated using javascript --> | ||||
15 | </div> | ||||
16 | </div> | ||||
17 | {% endblock %} |