blob: 31d50848fd61f9d45a95a05bd20e53204e9bd1ff [file] [log] [blame]
Anand Doshiab690292013-06-13 11:21:35 +05301{% 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 %}